From b8374268cca0101dae22a746c3922f53b1ef16c9 Mon Sep 17 00:00:00 2001 From: Nikolay Shestakov Date: Thu, 7 Mar 2024 11:18:16 +0000 Subject: [PATCH] Fix Verify in pqv0 --- ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp b/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp index 0b7b645c8b4d..e29b4bc4f304 100644 --- a/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp +++ b/ydb/services/deprecated/persqueue_v0/grpc_pq_write_actor.cpp @@ -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();