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 a184de6 commit 3aa42f7Copy full SHA for 3aa42f7
projects/client/RabbitMQ.Client/src/client/impl/Connection.cs
@@ -1094,10 +1094,12 @@ protected void MaybeStopHeartbeatTimers()
1094
{
1095
if(_heartbeatReadTimer != null)
1096
1097
+ _heartbeatReadTimer.Change(Timeout.Infinite, Timeout.Infinite);
1098
_heartbeatReadTimer.Dispose();
1099
}
1100
if(_heartbeatWriteTimer != null)
1101
1102
+ _heartbeatWriteTimer.Change(Timeout.Infinite, Timeout.Infinite);
1103
_heartbeatWriteTimer.Dispose();
1104
1105
0 commit comments