mirror of https://github.com/apache/cassandra
Always collect hint tombstones.
Patch by brandonwilliams, reviewed by slebresne for CASSANDRA-5068
This commit is contained in:
parent
310bf34852
commit
577cb2c760
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in New Issue