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 1c8e421 commit 0c933cbCopy full SHA for 0c933cb
src/main/java/com/rabbitmq/client/impl/AMQConnection.java
@@ -741,8 +741,8 @@ private void readFrame(Frame frame) throws IOException {
741
742
/** private API */
743
public void handleHeartbeatFailure() {
744
- Exception ex = new MissedHeartbeatException("Heartbeat missing with heartbeat = " +
745
- _heartbeat + " seconds, for " + this.getHostAddress());
+ Exception ex = new MissedHeartbeatException("Detected missed server heartbeats, heartbeat interval: " +
+ _heartbeat + " seconds, RabbitMQ node hostname: " + this.getHostAddress());
746
try {
747
_exceptionHandler.handleUnexpectedConnectionDriverException(this, ex);
748
shutdown(null, false, ex, true);
0 commit comments