diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-06-27 12:22:09 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-07-05 12:58:35 +0200 |
commit | f82adab238f4b45d43049687c8e52bf7372ba053 (patch) | |
tree | f09ba0ef72ef1c13122233960759cd5b938249d5 /src/other_tools/just_mr/fetch.cpp | |
parent | 5bc6265b2ffe43370b4cddd0a9e4c09b059ef131 (diff) | |
download | justbuild-f82adab238f4b45d43049687c8e52bf7372ba053.tar.gz |
Pass StorageConfig and Storage to Serve
Diffstat (limited to 'src/other_tools/just_mr/fetch.cpp')
-rw-r--r-- | src/other_tools/just_mr/fetch.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/fetch.cpp b/src/other_tools/just_mr/fetch.cpp index 07a03f3d..0e2d3e60 100644 --- a/src/other_tools/just_mr/fetch.cpp +++ b/src/other_tools/just_mr/fetch.cpp @@ -28,6 +28,7 @@ #include "src/buildtool/multithreading/task_system.hpp" #include "src/buildtool/serve_api/remote/config.hpp" #include "src/buildtool/serve_api/remote/serve_api.hpp" +#include "src/buildtool/storage/storage.hpp" #include "src/other_tools/just_mr/exit_codes.hpp" #include "src/other_tools/just_mr/progress_reporting/progress.hpp" #include "src/other_tools/just_mr/progress_reporting/progress_reporter.hpp" @@ -417,7 +418,7 @@ auto MultiRepoFetch(std::shared_ptr<Configuration> const& config, return kExitConfigError; } - auto serve = ServeApi::Create(*serve_config, &apis); + auto serve = ServeApi::Create(*serve_config, &Storage::Instance(), &apis); // check configuration of the serve endpoint provided if (serve) { // if we have a remote endpoint explicitly given by the user, it must |