summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/client/batch_request_impl.cpp
diff options
context:
space:
mode:
authorhiddenpath <[email protected]>2025-01-14 17:10:48 +0300
committerhiddenpath <[email protected]>2025-01-14 17:27:54 +0300
commit6be1dcf71e42ab7141984480de1c8f255329a923 (patch)
treea52a2a345e598032e38fec00e7ee86079f062645 /yt/cpp/mapreduce/client/batch_request_impl.cpp
parente6ef3b21f38c311f6b0d6adb666a5d5b2190b32d (diff)
Make ExecuteBatch as a method of TRawBatchRequest
commit_hash:348e61a3cea27801ce90771a3f05cdee821b245f
Diffstat (limited to 'yt/cpp/mapreduce/client/batch_request_impl.cpp')
-rw-r--r--yt/cpp/mapreduce/client/batch_request_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/batch_request_impl.cpp b/yt/cpp/mapreduce/client/batch_request_impl.cpp
index d8084e9c457..eeab541001d 100644
--- a/yt/cpp/mapreduce/client/batch_request_impl.cpp
+++ b/yt/cpp/mapreduce/client/batch_request_impl.cpp
@@ -189,7 +189,7 @@ TFuture<TCheckPermissionResponse> TBatchRequest::CheckPermission(
void TBatchRequest::ExecuteBatch(const TExecuteBatchOptions& options)
{
- NYT::NDetail::ExecuteBatch(Client_->GetRetryPolicy()->CreatePolicyForGenericRequest(), Client_->GetContext(), *Impl_, options);
+ Impl_->ExecuteBatch(Client_->GetRetryPolicy()->CreatePolicyForGenericRequest(), Client_->GetContext(), options);
}
////////////////////////////////////////////////////////////////////////////////