We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b98b5 commit 85890a4Copy full SHA for 85890a4
projects/client/RabbitMQ.Client/src/client/impl/Connection.cs
@@ -987,10 +987,12 @@ protected void MaybeStopHeartbeatTimers()
987
{
988
if(_heartbeatReadTimer != null)
989
990
+ _heartbeatReadTimer.Change(Timeout.Infinite, Timeout.Infinite);
991
_heartbeatReadTimer.Dispose();
992
}
993
if(_heartbeatWriteTimer != null)
994
995
+ _heartbeatWriteTimer.Change(Timeout.Infinite, Timeout.Infinite);
996
_heartbeatWriteTimer.Dispose();
997
998
0 commit comments