summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/common/execution_common.hpp
diff options
context:
space:
mode:
authorAlberto Sartori <alberto.sartori@huawei.com>2022-04-21 14:43:02 +0200
committerAlberto Sartori <alberto.sartori@huawei.com>2022-04-21 14:43:02 +0200
commit3ea705c630b438fd6513fd6190190a559060f341 (patch)
treeec0e3fb8c2a2ee157a3c6f480c7edacd8b9174c2 /src/buildtool/execution_api/common/execution_common.hpp
parent9077143d0585ad55f336751a5a5b92d1082438e6 (diff)
downloadjustbuild-3ea705c630b438fd6513fd6190190a559060f341.tar.gz
add compatibility with original remote build protocol
Diffstat (limited to 'src/buildtool/execution_api/common/execution_common.hpp')
-rw-r--r--src/buildtool/execution_api/common/execution_common.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/common/execution_common.hpp b/src/buildtool/execution_api/common/execution_common.hpp
index 1cf198fe..1208fc99 100644
--- a/src/buildtool/execution_api/common/execution_common.hpp
+++ b/src/buildtool/execution_api/common/execution_common.hpp
@@ -89,7 +89,7 @@ static void EncodeUUIDVariant1(std::string* uuid) {
constexpr auto kHexDashPos = std::array{8UL, 12UL, 16UL, 20UL};
auto value = fmt::format("{}-{}", std::to_string(kRandomConstant), seed);
- auto uuid = HashGenerator{HashGenerator::HashType::SHA1}.Run(value).Bytes();
+ auto uuid = HashGenerator::Instance().Run(value).Bytes();
EncodeUUIDVersion4(&uuid);
EncodeUUIDVariant1(&uuid);
gsl_Expects(uuid.size() >= kRawLength);