Skip to content

Commit b8d7c3a

Browse files
authored
suppress verify for unexpected events (#6085)
1 parent 0fd1389 commit b8d7c3a

File tree

1 file changed

+3
-2
lines changed
  • ydb/core/tx/columnshard/resource_subscriber

1 file changed

+3
-2
lines changed

ydb/core/tx/columnshard/resource_subscriber/actor.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ class TActor: public TActorBootstrapped<TActor> {
3636
}
3737

3838
STFUNC(StateWait) {
39-
TLogContextGuard gLogging(NActors::TLogContextBuilder::Build(NKikimrServices::TX_COLUMNSHARD)("tablet_id", TabletId)("parent", Parent));
39+
TLogContextGuard gLogging(NActors::TLogContextBuilder::Build(NKikimrServices::TX_COLUMNSHARD)("tablet_id", TabletId)("parent", Parent)("ev_type", ev->GetTypeName()));
4040
switch (ev->GetTypeRewrite()) {
4141
cFunc(NActors::TEvents::TEvPoison::EventType, StartStopping);
4242
hFunc(TEvStartTask, Handle);
4343
hFunc(NKikimr::NResourceBroker::TEvResourceBroker::TEvResourceAllocated, Handle);
4444
default:
45-
AFL_VERIFY(false);
45+
AFL_WARN(NKikimrServices::TX_COLUMNSHARD)("problem", "unexpected event");
46+
AFL_VERIFY_DEBUG(false);
4647
}
4748
}
4849
};

0 commit comments

Comments
 (0)