summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/raw_client/raw_batch_request.cpp
diff options
context:
space:
mode:
authorilnurkh <[email protected]>2023-10-09 20:25:13 +0300
committerilnurkh <[email protected]>2023-10-09 20:46:53 +0300
commit6ef6895772bc473a21252db8a2a9f4c1b179841c (patch)
treed02a2d6e7014703f915b4042d8648196847186a6 /yt/cpp/mapreduce/raw_client/raw_batch_request.cpp
parentc9bb61f5c70bf0d4194b5d6285afc1e5447130e4 (diff)
Y_VERIFY->Y_ABORT_UNLESS at ^yt
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'yt/cpp/mapreduce/raw_client/raw_batch_request.cpp')
-rw-r--r--yt/cpp/mapreduce/raw_client/raw_batch_request.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/raw_client/raw_batch_request.cpp b/yt/cpp/mapreduce/raw_client/raw_batch_request.cpp
index 8ede410c386..1568c3d85e0 100644
--- a/yt/cpp/mapreduce/raw_client/raw_batch_request.cpp
+++ b/yt/cpp/mapreduce/raw_client/raw_batch_request.cpp
@@ -592,8 +592,8 @@ TFuture<TMultiTablePartitions> TRawBatchRequest::GetTablePartitions(
void TRawBatchRequest::FillParameterList(size_t maxSize, TNode* result, TInstant* nextTry) const
{
- Y_VERIFY(result);
- Y_VERIFY(nextTry);
+ Y_ABORT_UNLESS(result);
+ Y_ABORT_UNLESS(nextTry);
*nextTry = TInstant();
maxSize = Min(maxSize, BatchItemList_.size());
@@ -626,7 +626,7 @@ void TRawBatchRequest::ParseResponse(
TRawBatchRequest* retryBatch,
TInstant now)
{
- Y_VERIFY(retryBatch);
+ Y_ABORT_UNLESS(retryBatch);
EnsureType(node, TNode::List);
auto& responseList = node.AsList();