jbertram commented on code in PR #5487: URL: https://github.com/apache/activemq-artemis/pull/5487#discussion_r1952035665
########## artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java: ########## @@ -582,8 +582,8 @@ public synchronized void start() { if (tcpSendBufferSize != -1) { bootstrap.option(ChannelOption.SO_SNDBUF, tcpSendBufferSize); } - final int writeBufferLowWaterMark = this.writeBufferLowWaterMark != -1 ? this.writeBufferLowWaterMark : WriteBufferWaterMark.DEFAULT.low(); - final int writeBufferHighWaterMark = this.writeBufferHighWaterMark != -1 ? this.writeBufferHighWaterMark : WriteBufferWaterMark.DEFAULT.high(); + final int writeBufferLowWaterMark = this.writeBufferLowWaterMark == -1 ? WriteBufferWaterMark.DEFAULT.low() : this.writeBufferLowWaterMark; Review Comment: Done. ########## artemis-journal/src/main/java/org/apache/activemq/artemis/core/io/RunnableCallback.java: ########## Review Comment: Removed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact