From 35eaf8c3b2b12f0411f443e879427d8eff3f4d19 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 8 Apr 2025 15:44:28 +0200 Subject: BazelCasClient: only warn on failure of GetTree ... as that failure does not necessarily abort the build. --- src/buildtool/execution_api/remote/bazel/bazel_cas_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/buildtool/execution_api/remote') 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; -- cgit v1.2.3