diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-07-19 12:14:28 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-07-22 17:01:13 +0200 |
commit | 9a9409e44b8ad5a68f38f918e5e026875732b574 (patch) | |
tree | 6a86cdfc8a6f29ea51e26464fb6bd71649adfd48 /src/buildtool/execution_engine/executor | |
parent | 792751a72f86360afd12158e9eedc00e88db13a6 (diff) | |
download | justbuild-9a9409e44b8ad5a68f38f918e5e026875732b574.tar.gz |
Pass HashFunction to BazelApi
Diffstat (limited to 'src/buildtool/execution_engine/executor')
-rw-r--r-- | src/buildtool/execution_engine/executor/executor.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/execution_engine/executor/executor.hpp b/src/buildtool/execution_engine/executor/executor.hpp index d4d1f928..70d32ed6 100644 --- a/src/buildtool/execution_engine/executor/executor.hpp +++ b/src/buildtool/execution_engine/executor/executor.hpp @@ -693,7 +693,8 @@ class ExecutorImpl { endpoint.port, auth, retry_config, - config); + config, + HashFunction::Instance()); } } return nullptr; |