We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4b422 commit 33c49e9Copy full SHA for 33c49e9
ydb/core/persqueue/pqtablet/partition/partition_read.cpp
@@ -508,6 +508,10 @@ TMaybe<TReadAnswer> TReadInfo::AddBlobsFromBody(const TVector<NPQ::TRequestedBlo
508
if (res.IsLastPart()) {
509
PartNo = 0;
510
++Offset;
511
+ if (LastOffset && Offset >= LastOffset) {
512
+ needStop = true;
513
+ break;
514
+ }
515
} else {
516
++PartNo;
517
}
@@ -644,6 +648,9 @@ TReadAnswer TReadInfo::FormAnswer(
644
648
if (updateUsage(writeBlob)) {
645
649
break;
646
650
651
652
653
647
654
655
656
0 commit comments