diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-05 17:52:53 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-07-16 17:51:12 +0200 |
commit | 661d0bdb668c1cddf5d5da9e48ece0b44c4e3962 (patch) | |
tree | f40f4f8221e13f3d5783c60ef1837dfd64bb94a2 /src/other_tools/just_mr/fetch.cpp | |
parent | eb8d824360ce262502c5fc06072ebf07ea278bec (diff) | |
download | justbuild-661d0bdb668c1cddf5d5da9e48ece0b44c4e3962.tar.gz |
Pass LocalExecutionConfig to ApiBundle
Diffstat (limited to 'src/other_tools/just_mr/fetch.cpp')
-rw-r--r-- | src/other_tools/just_mr/fetch.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/other_tools/just_mr/fetch.cpp b/src/other_tools/just_mr/fetch.cpp index 147c8ad6..6b247e7c 100644 --- a/src/other_tools/just_mr/fetch.cpp +++ b/src/other_tools/just_mr/fetch.cpp @@ -23,6 +23,7 @@ #include "src/buildtool/auth/authentication.hpp" #include "src/buildtool/execution_api/common/api_bundle.hpp" #include "src/buildtool/execution_api/common/execution_api.hpp" +#include "src/buildtool/execution_api/local/config.hpp" #include "src/buildtool/execution_api/remote/config.hpp" #include "src/buildtool/logging/log_level.hpp" #include "src/buildtool/logging/logger.hpp" @@ -408,6 +409,7 @@ auto MultiRepoFetch(std::shared_ptr<Configuration> const& config, ApiBundle const apis{&storage_config, &storage, + &LocalExecutionConfig::Instance(), /*repo_config=*/nullptr, &*auth_config, RemoteExecutionConfig::RemoteAddress()}; |