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 0a8a947 commit 0e60f7bCopy full SHA for 0e60f7b
src/main/java/com/rabbitmq/client/impl/nio/NioLoop.java
@@ -78,6 +78,9 @@ public void run() {
78
state.getConnection().handleHeartbeatFailure();
79
} catch (Exception e) {
80
LOGGER.warn("Error after heartbeat failure of connection {}", state.getConnection());
81
+ } catch (AssertionError e) {
82
+ // see https://github.com/rabbitmq/rabbitmq-java-client/issues/237
83
+ LOGGER.warn("Assertion error after heartbeat failure of connection {}", state.getConnection());
84
} finally {
85
selectionKey.cancel();
86
}
0 commit comments