summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/execution_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/execution_service/execution_server.cpp')
-rw-r--r--src/buildtool/execution_api/execution_service/execution_server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildtool/execution_api/execution_service/execution_server.cpp b/src/buildtool/execution_api/execution_service/execution_server.cpp
index 6f77ba3f..1b416ec8 100644
--- a/src/buildtool/execution_api/execution_service/execution_server.cpp
+++ b/src/buildtool/execution_api/execution_service/execution_server.cpp
@@ -176,9 +176,9 @@ auto ExecutionServiceImpl::Execute(
auto const lock = GarbageCollector::SharedLock(storage_config_);
if (not lock) {
- static constexpr auto str = "Could not acquire SharedLock";
- logger_.Emit(LogLevel::Error, "{}", str);
- return grpc::Status{grpc::StatusCode::INTERNAL, str};
+ static constexpr auto kStr = "Could not acquire SharedLock";
+ logger_.Emit(LogLevel::Error, "{}", kStr);
+ return grpc::Status{grpc::StatusCode::INTERNAL, kStr};
}
auto action = ToBazelAction(*action_digest, storage_);