diff options
author | ermolovd <ermolovd@yandex-team.com> | 2025-02-11 16:14:26 +0300 |
---|---|---|
committer | ermolovd <ermolovd@yandex-team.com> | 2025-02-11 16:56:05 +0300 |
commit | 749393b0956db42603f026990b66966bf84bffa1 (patch) | |
tree | 3292db4934a68edbf8d006f8778fd4cad1000f42 | |
parent | 38e64d164b1393b620a7cbdda058eb7753c17e70 (diff) | |
download | ydb-749393b0956db42603f026990b66966bf84bffa1.tar.gz |
Fix style
commit_hash:64d27623f69d0d479e597339f3056a4a0a038054
-rw-r--r-- | yt/cpp/mapreduce/client/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/client.cpp b/yt/cpp/mapreduce/client/client.cpp index d1fa7d2082..e609f924a4 100644 --- a/yt/cpp/mapreduce/client/client.cpp +++ b/yt/cpp/mapreduce/client/client.cpp @@ -273,7 +273,7 @@ void TClientBase::Concatenate( auto end = sourcePaths.begin() + std::min(i + options.MaxBatchSize_, std::ssize(sourcePaths)); batch.assign(begin, end); - bool firstBatch = i == 0; + bool firstBatch = (i == 0); RequestWithRetry<void>( ClientRetryPolicy_->CreatePolicyForGenericRequest(), [this, &batch, &destinationPath, &options, outerClient, firstBatch] (TMutationId /*mutationId*/) { |