normanmaurer 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_r254182692
##########
File path:
zookeeper-server/src/main/java/org/apache/zookeeper/ClientCnxnSocket.java
##########
@@ -59,8 +60,8 @@
* readLength() to receive the full message.
*/
protected ByteBuffer incomingBuffer = lenBuffer;
- protected long sentCount = 0;
- protected long recvCount = 0;
+ protected final AtomicLong sentCount = new AtomicLong(0L);
+ protected final AtomicLong recvCount = new AtomicLong(0L);
Review comment:
nit: init with 0L is default
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services