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 4daf62e commit 9436c70Copy full SHA for 9436c70
projects/client/RabbitMQ.Client/src/client/impl/ConnectionBase.cs
@@ -550,9 +550,10 @@ public void HeartbeatReadLoop()
550
// Has to miss two full heartbeats to force socket close
551
if (m_missedHeartbeats > 1)
552
{
553
- EndOfStreamException eose = new EndOfStreamException(
554
- "Heartbeat missing with heartbeat == " +
555
- m_heartbeat + " seconds");
+ String description = "Heartbeat missing with heartbeat == " +
+ m_heartbeat + " seconds";
+ EndOfStreamException eose = new EndOfStreamException(description);
556
+ m_shutdownReport.Add(new ShutdownReportEntry(description, eose));
557
HandleMainLoopException(new ShutdownEventArgs(
558
ShutdownInitiator.Library,
559
0,
0 commit comments