Skip to content

Commit

Permalink
Fixed uncaught exception error
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Dec 10, 2024
1 parent 5b2927c commit 8ec9cc8
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 @@ -308,7 +308,7 @@ class TTopicSession : public TActorBootstrapped<TTopicSession> {
ExceptionFunc(std::exception, HandleException)
)

STRICT_STFUNC(ErrorState, {
STRICT_STFUNC_EXC(ErrorState,
cFunc(NActors::TEvents::TEvPoisonPill::EventType, PassAway);
IgnoreFunc(NFq::TEvPrivate::TEvPqEventsReady);
IgnoreFunc(NFq::TEvPrivate::TEvCreateSession);
Expand All @@ -319,8 +319,9 @@ class TTopicSession : public TActorBootstrapped<TTopicSession> {
IgnoreFunc(NFq::TEvRowDispatcher::TEvStartSession);
IgnoreFunc(NFq::TEvRowDispatcher::TEvStopSession);
IgnoreFunc(NFq::TEvPrivate::TEvSendStatisticToRowDispatcher);
IgnoreFunc(TEvRowDispatcher::TEvPurecalcCompileResponse);
})
IgnoreFunc(TEvRowDispatcher::TEvPurecalcCompileResponse);,
ExceptionFunc(std::exception, HandleException)
)
};

TTopicSession::TTopicSession(
Expand Down

0 comments on commit 8ec9cc8

Please sign in to comment.