mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.0' into cassandra-2.1
Conflicts: CHANGES.txt
This commit is contained in:
commit
019e338670
|
|
@ -20,6 +20,7 @@ Merged from 2.0:
|
|||
* Fix accounting in FileCacheService to allow re-using RAR (CASSANDRA-6838)
|
||||
* Fix static counter columns (CASSANDRA-6827)
|
||||
* Restore expiring->deleted (cell) compaction optimization (CASSANDRA-6844)
|
||||
* Fix CompactionManager.needsCleanup (CASSANDRA-6845)
|
||||
* Avoid race-prone second "scrub" of system keyspace (CASSANDRA-6797)
|
||||
* Pool CqlRecordWriter clients by inetaddress rather than Range
|
||||
(CASSANDRA-6665)
|
||||
|
|
|
|||
|
|
@ -564,7 +564,7 @@ public class CompactionManager implements CompactionManagerMBean
|
|||
return false;
|
||||
}
|
||||
|
||||
if (i == (ownedRanges.size() - 1))
|
||||
if (i == (sortedRanges.size() - 1))
|
||||
{
|
||||
// we're at the last range and we found a key beyond the end of the range
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue