summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/execution_server.cpp
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-06-20 16:56:25 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-06-25 13:59:48 +0200
commite5ca9113797a23824dd4545d93221bd6379dd692 (patch)
treeaa9ee982e00dada9c7e7151deb016f4fbbcee071 /src/buildtool/execution_api/execution_service/execution_server.cpp
parent97c43e0c768cea5486c38881cef4b0d7a4a213f5 (diff)
downloadjustbuild-e5ca9113797a23824dd4545d93221bd6379dd692.tar.gz
Pass IExecutionApi to ServerImpl, Archive by reference
...instead of not_null const ptr.
Diffstat (limited to 'src/buildtool/execution_api/execution_service/execution_server.cpp')
-rw-r--r--src/buildtool/execution_api/execution_service/execution_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/execution_server.cpp b/src/buildtool/execution_api/execution_service/execution_server.cpp
index c3802ea7..b71380f5 100644
--- a/src/buildtool/execution_api/execution_service/execution_server.cpp
+++ b/src/buildtool/execution_api/execution_service/execution_server.cpp
@@ -133,7 +133,7 @@ auto ExecutionServiceImpl::GetIExecutionAction(
auto env_vars = GetEnvVars(*c);
- auto i_execution_action = api_->CreateAction(
+ auto i_execution_action = api_.CreateAction(
ArtifactDigest{action.input_root_digest()},
{c->arguments().begin(), c->arguments().end()},
{c->output_files().begin(), c->output_files().end()},