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 /test/utils/remote_execution/bazel_action_creator.hpp | |
parent | 82bfeff1389446f8743bd551f9833998eb7a1424 (diff) | |
download | justbuild-fc0c842eb2e938c7de405e365ff320eb28e04bc7.tar.gz |
Pass TmpDir to BazelNetwork and BazelCasClient
Diffstat (limited to 'test/utils/remote_execution/bazel_action_creator.hpp')
-rw-r--r-- | test/utils/remote_execution/bazel_action_creator.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/remote_execution/bazel_action_creator.hpp b/test/utils/remote_execution/bazel_action_creator.hpp index 69a5b172..b340dccb 100644 --- a/test/utils/remote_execution/bazel_action_creator.hpp +++ b/test/utils/remote_execution/bazel_action_creator.hpp @@ -121,8 +121,8 @@ remote_config->remote_address->port, &*auth_config, &retry_config, - &capabilities); - + &capabilities, + /*temp_space=*/nullptr); if (cas_client.BatchUpdateBlobs(instance_name, blobs) == blobs.size()) { return std::make_unique<bazel_re::Digest>( ArtifactDigestFactory::ToBazel(action_blob->GetDigest())); |