Skip to content

Commit

Permalink
YQ-3955 RD fixed uncaught exception error (ydb-platform#12465)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Dec 11, 2024
1 parent 6767a9e commit fd64b6c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ydb/core/fq/libs/row_dispatcher/topic_session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,16 +312,17 @@ class TTopicSession : public TActorBootstrapped<TTopicSession> {
ExceptionFunc(std::exception, HandleException)
)

STRICT_STFUNC(ErrorState, {
STRICT_STFUNC_EXC(ErrorState,
cFunc(TEvents::TEvPoisonPill::EventType, PassAway);
IgnoreFunc(NFq::TEvPrivate::TEvPqEventsReady);
IgnoreFunc(NFq::TEvPrivate::TEvCreateSession);
IgnoreFunc(NFq::TEvPrivate::TEvSendStatisticToReadActor);
IgnoreFunc(TEvRowDispatcher::TEvGetNextBatch);
IgnoreFunc(NFq::TEvRowDispatcher::TEvStartSession);
IgnoreFunc(NFq::TEvRowDispatcher::TEvStopSession);
IgnoreFunc(NFq::TEvPrivate::TEvSendStatisticToRowDispatcher);
})
IgnoreFunc(NFq::TEvPrivate::TEvSendStatisticToRowDispatcher);,
ExceptionFunc(std::exception, HandleException)
)
};

TTopicSession::TTopicSession(
Expand Down

0 comments on commit fd64b6c

Please sign in to comment.