Merge branch 'cassandra-3.11' into trunk

This commit is contained in:
Robert Stupp 2017-04-09 10:59:18 +02:00
commit 333ebd67a0
2 changed files with 2 additions and 1 deletions

View File

@ -118,6 +118,7 @@ Merged from 3.0:
for a table that's in system_schema.tables (CASSANDRA-13180)
* Nodetool upgradesstables/scrub/compact ignores system tables (CASSANDRA-13410)
Merged from 2.2:
* Fix weightedSize() for row-cache reported by JMX and NodeTool (CASSANDRA-13393)
* Fix JVM metric names (CASSANDRA-13103)
* Honor truststore-password parameter in cassandra-stress (CASSANDRA-12773)
* Discard in-flight shadow round responses (CASSANDRA-12653)

View File

@ -96,7 +96,7 @@ public class OHCProvider implements CacheProvider<RowCacheKey, IRowCacheEntry>
public long weightedSize()
{
return ohCache.size();
return ohCache.memUsed();
}
public void clear()