diff options
author | Sergey Veselov <sergeyveselov@ydb.tech> | 2024-08-19 16:03:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 16:03:57 +0300 |
commit | b57e4f7974bb108ed10a93dff49d12988fd40b3b (patch) | |
tree | 0e8e25137d2dbf786c1461f5b28f2da47f07f4bb | |
parent | 1fdcf7096031ebf835e647e6efbe9d812ff3d0ce (diff) | |
download | ydb-b57e4f7974bb108ed10a93dff49d12988fd40b3b.tar.gz |
Finally fix use after move in http_proxy correctly (#7991)
-rw-r--r-- | ydb/core/http_proxy/http_service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/http_proxy/http_service.cpp b/ydb/core/http_proxy/http_service.cpp index f476b4ceaf..968979070a 100644 --- a/ydb/core/http_proxy/http_service.cpp +++ b/ydb/core/http_proxy/http_service.cpp @@ -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(); |