diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2025-02-21 12:52:19 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2025-03-24 09:25:05 +0100 |
commit | fc0c842eb2e938c7de405e365ff320eb28e04bc7 (patch) | |
tree | 2fd4e62cec95b94b77643e89e8ff5a47e8ae7263 /src/buildtool/execution_api/remote/bazel/bazel_api.cpp | |
parent | 82bfeff1389446f8743bd551f9833998eb7a1424 (diff) | |
download | justbuild-fc0c842eb2e938c7de405e365ff320eb28e04bc7.tar.gz |
Pass TmpDir to BazelNetwork and BazelCasClient
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_api.cpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_api.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_api.cpp b/src/buildtool/execution_api/remote/bazel/bazel_api.cpp index eb140b3c..b2f145b0 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_api.cpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_api.cpp @@ -151,7 +151,8 @@ BazelApi::BazelApi(std::string const& instance_name, auth, retry_config, exec_config, - hash_function); + hash_function, + /*temp_space=*/nullptr); } // implement move constructor in cpp, where all members are complete types |