Always collect hint tombstones.

Patch by brandonwilliams, reviewed by slebresne for CASSANDRA-5068
This commit is contained in:
Brandon Williams 2013-02-11 13:03:19 -06:00
parent 310bf34852
commit 577cb2c760
2 changed files with 7 additions and 9 deletions

View File

@ -5,6 +5,7 @@
* fix start key/end token validation for wide row iteration (CASSANDRA-5168)
* add ConfigHelper support for Thrift frame and max message sizes (CASSANDRA-5188)
* fix nodetool repair not fail on node down (CASSANDRA-5203)
* always collect tombstone hints (CASSANDRA-5068)
1.1.9

View File

@ -377,16 +377,13 @@ public class HintedHandOffManager implements HintedHandOffManagerMBean
}
}
if (rowsReplayed > 0)
try
{
try
{
compact().get();
}
catch (Exception e)
{
throw new RuntimeException(e);
}
compact().get();
}
catch (Exception e)
{
throw new RuntimeException(e);
}
logger_.info(String.format("Finished hinted handoff of %s rows to endpoint %s", rowsReplayed, endpoint));