Skip to content

Commit f43d2b4

Browse files
Finally fix use after move in http_proxy correctly (#7993)
1 parent 917bae1 commit f43d2b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/http_proxy/http_service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ namespace NKikimr::NHttpProxy {
104104
try {
105105
auto signature = context.GetSignature();
106106
auto methodName = context.MethodName;
107-
Processors->Execute(std::move(context.MethodName), std::move(context), std::move(signature), ctx);
107+
Processors->Execute(std::move(methodName), std::move(context), std::move(signature), ctx);
108108
} catch (const NKikimr::NSQS::TSQSException& e) {
109109
context.ResponseData.Status = NYdb::EStatus::BAD_REQUEST;
110110
context.ResponseData.ErrorText = e.what();

0 commit comments

Comments
 (0)