mirror of https://github.com/apache/cassandra
Incorrect counting of pending messages in OutboundTcpConnection
Patch by Jaydeepkumar Chovatia; Reviewed by Ariel Weisberg for CASSANDRA-11551
This commit is contained in:
parent
1b0b113fac
commit
81b6c9e994
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue