Skip to content

Commit

Permalink
YQ-3900 Fix ScheduleHeartbeat() if already connected (#11888)
Browse files Browse the repository at this point in the history
  • Loading branch information
kardymonds authored Nov 22, 2024
1 parent f5beef5 commit fed0239
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ydb/library/yql/dq/actors/common/retry_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ void TRetryEventsQueue::OnNewRecipientId(const NActors::TActorId& recipientId, b
ReceivedEventsSeqNos.clear();
Connected = connected;
RetryState = Nothing();
if (Connected) {
ScheduleHeartbeat();
}
}

void TRetryEventsQueue::HandleNodeDisconnected(ui32 nodeId) {
Expand Down

0 comments on commit fed0239

Please sign in to comment.