David Mollitor created ZOOKEEPER-3341:
-----------------------------------------
Summary: Superfluous ByteBuffer Duplicate
Key: ZOOKEEPER-3341
URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3341
Project: ZooKeeper
Issue Type: Improvement
Components: server
Reporter: David Mollitor
{code:java|title=QuorumCnxManager.java}
byte[] msgArray = new byte[length];
din.readFully(msgArray, 0, length);
ByteBuffer message = ByteBuffer.wrap(msgArray);
addToRecvQueue(new Message(message.duplicate(), sid));
{code}
The {{message}} is being duplicated and the original is GC'ed. Just pass the
{{message}}; do not bother with making a duplicate. I think this is a
copy+paste bug.
https://github.com/apache/zookeeper/blob/master/zookeeper-server/src/main/java/org/apache/zookeeper/server/quorum/QuorumCnxManager.java#L1195-L1198
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)