diff options
author | alexvru <alexvru@ydb.tech> | 2023-03-24 12:09:58 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2023-03-24 12:09:58 +0300 |
commit | 8ef8071c99c12bc82db6da5950e9b8c02765126e (patch) | |
tree | d71a74ea7b7621b6a7df585449347443694b7b99 | |
parent | d3662522303de8956ea9e5ade412922d9dcfd29b (diff) | |
download | ydb-8ef8071c99c12bc82db6da5950e9b8c02765126e.tar.gz |
Fix bug
-rw-r--r-- | ydb/core/blob_depot/assimilator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/blob_depot/assimilator.cpp b/ydb/core/blob_depot/assimilator.cpp index 492ae9be5f3..35bdc99fa39 100644 --- a/ydb/core/blob_depot/assimilator.cpp +++ b/ydb/core/blob_depot/assimilator.cpp @@ -372,7 +372,7 @@ namespace NKikimr::NBlobDepot { (Status, resp.Status), (NumGetsUnprocessed, GetIdToUnprocessedPuts.size())); if (resp.Status == NKikimrProto::OK) { std::vector<ui8> channels(1); - if (!Self->PickChannels(NKikimrBlobDepot::TChannelKind::Data, channels)) { + if (Self->PickChannels(NKikimrBlobDepot::TChannelKind::Data, channels)) { TChannelInfo& channel = Self->Channels[channels.front()]; const ui64 value = channel.NextBlobSeqId++; const auto blobSeqId = TBlobSeqId::FromSequentalNumber(channel.Index, Self->Executor()->Generation(), value); |