summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/batch_request_impl.cpp
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-01-14 19:55:50 +0300
committerhiddenpath <[email protected]>2025-01-14 20:36:45 +0300
commitafa0505d8aa93cf04c6baa573417fcc219d134ce (patch)
treef643aad2b17fe7e2938774adc8a93e2b1c8f3b10 /yt/cpp/mapreduce/client/batch_request_impl.cpp
parent75745a5e674587c5c9092665fd9e9654184cceaa (diff)
YT-23616: Rename TRawBatchRequest to THttpRawBatchRequest
commit_hash:86c2242b5c4d36886d33a0f52a452e493fb7555c
Diffstat (limited to 'yt/cpp/mapreduce/client/batch_request_impl.cpp')
-rw-r--r--yt/cpp/mapreduce/client/batch_request_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/cpp/mapreduce/client/batch_request_impl.cpp b/yt/cpp/mapreduce/client/batch_request_impl.cpp
index eeab541001d..f45eee319bf 100644
--- a/yt/cpp/mapreduce/client/batch_request_impl.cpp
+++ b/yt/cpp/mapreduce/client/batch_request_impl.cpp
@@ -36,11 +36,11 @@ using ::NThreading::NewPromise;
TBatchRequest::TBatchRequest(const TTransactionId& defaultTransaction, ::TIntrusivePtr<TClient> client)
: DefaultTransaction_(defaultTransaction)
- , Impl_(MakeIntrusive<TRawBatchRequest>(client->GetContext().Config))
+ , Impl_(MakeIntrusive<THttpRawBatchRequest>(client->GetContext().Config))
, Client_(client)
{ }
-TBatchRequest::TBatchRequest(TRawBatchRequest* impl, ::TIntrusivePtr<TClient> client)
+TBatchRequest::TBatchRequest(THttpRawBatchRequest* impl, ::TIntrusivePtr<TClient> client)
: Impl_(impl)
, Client_(std::move(client))
{ }