Skip to content

Commit

Permalink
Finally fix use after move in http_proxy correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheivesialou committed Aug 19, 2024
1 parent 917bae1 commit 608ca3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/http_proxy/http_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ namespace NKikimr::NHttpProxy {
try {
auto signature = context.GetSignature();
auto methodName = context.MethodName;
Processors->Execute(std::move(context.MethodName), std::move(context), std::move(signature), ctx);
Processors->Execute(std::move(methodName), std::move(context), std::move(signature), ctx);
} catch (const NKikimr::NSQS::TSQSException& e) {
context.ResponseData.Status = NYdb::EStatus::BAD_REQUEST;
context.ResponseData.ErrorText = e.what();
Expand Down

0 comments on commit 608ca3a

Please sign in to comment.