Skip to content

Commit

Permalink
Fix Verify in pqv0
Browse files Browse the repository at this point in the history
  • Loading branch information
nshestakov committed Mar 7, 2024
1 parent 4192b14 commit b837426
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,9 @@ void TWriteSessionActor::LogSession(const TActorContext& ctx) {
}

void TWriteSessionActor::HandleWakeup(const TActorContext& ctx) {
Y_ABORT_UNLESS(State == ES_INITED);
if (State != ES_INITED) {
return;
}

auto now = ctx.Now();

Expand Down

0 comments on commit b837426

Please sign in to comment.