anmolnar commented on a change in pull request #753: ZOOKEEPER-3204: Reconfig tests are constantly failing on 3.5 after applying Java 11 fix URL: https://github.com/apache/zookeeper/pull/753#discussion_r253897324
########## File path: zookeeper-server/src/main/java/org/apache/zookeeper/server/NettyServerCnxn.java ########## @@ -303,19 +277,126 @@ private boolean checkFourLetterWord(final Channel channel, } } - public void receiveMessage(ChannelBuffer message) { + /** + * Process incoming message. This should only be called from the event + * loop thread. + * @param buf the message bytes to process. + */ + void processMessage(ByteBuf buf) { + assert channel.eventLoop().inEventLoop(); Review comment: I suggest to stay in-sync with master now until that patch is not accepted. After that we can backport and release it easily. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services