summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/operations_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/execution_service/operations_server.cpp')
-rw-r--r--src/buildtool/execution_api/execution_service/operations_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/operations_server.cpp b/src/buildtool/execution_api/execution_service/operations_server.cpp
index 6e082bf4..23023c7d 100644
--- a/src/buildtool/execution_api/execution_service/operations_server.cpp
+++ b/src/buildtool/execution_api/execution_service/operations_server.cpp
@@ -29,7 +29,7 @@ auto OperarationsServiceImpl::GetOperation(
}
logger_.Emit(LogLevel::Trace, "GetOperation: {}", hash);
std::optional<::google::longrunning::Operation> op;
- op = OperationCache::Query(hash);
+ op = op_cache_.Query(hash);
if (!op) {
auto const& str = fmt::format(
"Executing action {} not found in internal cache.", hash);