@@ -390,7 +390,7 @@ void TDqPqRdReadActor::ProcessGlobalState() {
390
390
if (!CoordinatorActorId) {
391
391
SRC_LOG_I (" Send TEvCoordinatorChangesSubscribe to local row dispatcher, self id " << SelfId ());
392
392
Send (LocalRowDispatcherActorId, new NFq::TEvRowDispatcher::TEvCoordinatorChangesSubscribe ());
393
- State = EState::WAIT_COORDINATOR_ID;
393
+ State = EState::WAIT_COORDINATOR_ID;
394
394
}
395
395
[[fallthrough]];
396
396
case EState::WAIT_COORDINATOR_ID: {
@@ -664,7 +664,7 @@ void TDqPqRdReadActor::Handle(const NYql::NDq::TEvRetryQueuePrivate::TEvEvHeartb
664
664
bool needSend = sessionInfo.EventsQueue .Heartbeat ();
665
665
if (needSend) {
666
666
SRC_LOG_T (" Send TEvEvHeartbeat" );
667
- Send (sessionInfo.RowDispatcherActorId , new NFq::TEvRowDispatcher::TEvHeartbeat (), sessionInfo.Generation );
667
+ Send (sessionInfo.RowDispatcherActorId , new NFq::TEvRowDispatcher::TEvHeartbeat (), IEventHandle::FlagTrackDelivery, sessionInfo.Generation );
668
668
}
669
669
}
670
670
@@ -764,7 +764,7 @@ void TDqPqRdReadActor::HandleDisconnected(TEvInterconnect::TEvNodeDisconnected::
764
764
}
765
765
766
766
void TDqPqRdReadActor::Handle (NActors::TEvents::TEvUndelivered::TPtr& ev) {
767
- SRC_LOG_D (" Received TEvUndelivered, " << ev->Get ()->ToString () << " from " << ev->Sender .ToString () << " , reason " << ev->Get ()->Reason );
767
+ SRC_LOG_D (" Received TEvUndelivered, " << ev->Get ()->ToString () << " from " << ev->Sender .ToString () << " , reason " << ev->Get ()->Reason << " , cookie " << ev-> Cookie );
768
768
Counters.Undelivered ++;
769
769
770
770
auto sessionIt = Sessions.find (ev->Sender );
0 commit comments