Incorrect counting of pending messages in OutboundTcpConnection

Patch by Jaydeepkumar Chovatia; Reviewed by Ariel Weisberg for CASSANDRA-11551
This commit is contained in:
jaydeepkumar1984 2018-04-24 10:18:34 -07:00 committed by Ariel Weisberg
parent 1b0b113fac
commit 81b6c9e994
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2.2.13
* Incorrect counting of pending messages in OutboundTcpConnection (CASSANDRA-11551)
* CqlRecordReader no longer quotes the keyspace when connecting, as the java driver will (CASSANDRA-10751)
* Fix compaction failure caused by reading un-flushed data (CASSANDRA-12743)
* Use Bounds instead of Range for sstables in anticompaction (CASSANDRA-14411)

View File

@ -232,6 +232,7 @@ public class OutboundTcpConnection extends Thread
// clear out the queue, else gossip messages back up.
drainedMessages.clear();
backlog.clear();
currentMsgBufferCount = 0;
break inner;
}
}