Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1534#discussion_r138716684
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyAcceptor.java
---
@@ -843,4 +847,12 @@ private Throwable getRootCause(Throwable throwable) {
return (list.size() < 2 ? throwable : list.get(list.size() - 1));
}
}
+
+ public static int getCommunicationTimeout() {
--- End diff --
as noted about should be configured by configuration per acceptor instance,
these then are redundant.
---