belliottsmith commented on code in PR #4078:
URL: https://github.com/apache/cassandra/pull/4078#discussion_r2040342889
##########
src/java/org/apache/cassandra/net/OutboundConnection.java:
##########
@@ -824,7 +825,11 @@ boolean doRun(Established established)
Message.serializer.serialize(next, out,
messagingVersion);
if (sending.length() != sendingBytes + messageSize)
+ {
+ DataOutputBufferFixed out2 = new
DataOutputBufferFixed(ByteBuffer.allocate(sendingBytes + messageSize));
+ Message.serializer.serialize(next, out2,
messagingVersion);
Review Comment:
Oh this was debug logic I failed to remove. Thanks
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]