diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-08 15:44:28 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-04-08 16:07:27 +0200 |
commit | 35eaf8c3b2b12f0411f443e879427d8eff3f4d19 (patch) | |
tree | d659c8c371c4d16b0062ceae83d02e6e0b770950 /src/buildtool/execution_api/remote | |
parent | 574873c7fed97c5df26e33dda8d6cc7f221fad8a (diff) | |
download | justbuild-35eaf8c3b2b12f0411f443e879427d8eff3f4d19.tar.gz |
BazelCasClient: only warn on failure of GetTree
... as that failure does not necessarily abort the build.
Diffstat (limited to 'src/buildtool/execution_api/remote')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp b/src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp index 8239b9d7..762f8f5d 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp @@ -381,7 +381,7 @@ auto BazelCasClient::GetTree(std::string const& instance_name, auto status = stream->Finish(); if (not status.ok()) { - LogStatus(&logger_, LogLevel::Error, status); + LogStatus(&logger_, LogLevel::Warning, status); } return result; |