Merge branch 'cassandra-3.11' into cassandra-3.X

This commit is contained in:
Jason Brown 2016-12-13 05:10:23 -08:00
commit 55adebe665
2 changed files with 3 additions and 1 deletions

View File

@ -124,6 +124,7 @@
* Restore resumable hints delivery (CASSANDRA-11960)
* Properly report LWT contention (CASSANDRA-12626)
Merged from 3.0:
* Estimated TS drop-time histogram updated with Cell.NO_DELETION_TIME (CASSANDRA-13040)
* Nodetool compactionstats fails with NullPointerException (CASSANDRA-13021)
* Thread local pools never cleaned up (CASSANDRA-13033)
* Set RPC_READY to false when draining or if a node is marked as shutdown (CASSANDRA-12781)

View File

@ -205,7 +205,8 @@ public class MetadataCollector implements PartitionStatisticsCollector
private void updateLocalDeletionTime(int newLocalDeletionTime)
{
localDeletionTimeTracker.update(newLocalDeletionTime);
estimatedTombstoneDropTime.update(newLocalDeletionTime);
if (newLocalDeletionTime != Cell.NO_DELETION_TIME)
estimatedTombstoneDropTime.update(newLocalDeletionTime);
}
private void updateTTL(int newTTL)