Skip to content

Commit

Permalink
Fixed diff 5
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Dec 4, 2024
1 parent 6a3d76b commit 547990a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ydb/core/fq/libs/row_dispatcher/topic_session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ class TTopicSession : public TActorBootstrapped<TTopicSession> {

void UpdateClinetOffset(ui64 offset) override {
LOG_ROW_DISPATCHER_TRACE("UpdateClinetOffset for " << ReadActorId << ", new offset: " << offset);
NextMessageOffset = offset + 1;
if (!NextMessageOffset || *NextMessageOffset < offset + 1) {
NextMessageOffset = offset + 1;
}
}

// Settings
Expand Down

0 comments on commit 547990a

Please sign in to comment.