Skip to content

Commit

Permalink
fix compile job?
Browse files Browse the repository at this point in the history
  • Loading branch information
Qup42 committed Feb 5, 2025
1 parent ec9b11a commit 39f4754
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/engine/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,9 @@ Awaitable<void> Server::process(
.queryExecutionTree_.getRootOperation()
->runtimeInfo());
}
co_return co_await send(
createJsonResponse(errorResponseJson, request, responseStatus));
auto errResponse =
createJsonResponse(errorResponseJson, request, responseStatus);
co_return co_await send(std::move(errResponse));
}

Check warning on line 504 in src/engine/Server.cpp

View check run for this annotation

Codecov / codecov/patch

src/engine/Server.cpp#L496-L504

Added lines #L496 - L504 were not covered by tests
}

Expand Down

0 comments on commit 39f4754

Please sign in to comment.