mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.0' into cassandra-2.1
This commit is contained in:
commit
197d43941e
|
|
@ -20,6 +20,7 @@ Merged from 2.0:
|
|||
* Make StreamSession#closeSession() idempotent (CASSANDRA-7262)
|
||||
* Fix infinite loop on exception while streaming (CASSANDRA-7330)
|
||||
Merged from 1.2:
|
||||
* reduce failure detector initial value to 2s (CASSANDRA-7307)
|
||||
* Fix problem truncating on a node that was previously in a dead state (CASSANDRA-7318)
|
||||
* Don't insert tombstones that hide indexed values into 2i (CASSANDRA-7268)
|
||||
* Track metrics at a keyspace level (CASSANDRA-6539)
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ public class FailureDetector implements IFailureDetector, FailureDetectorMBean
|
|||
String newvalue = System.getProperty("cassandra.fd_initial_value_ms");
|
||||
if (newvalue == null)
|
||||
{
|
||||
return Gossiper.intervalInMillis * 30;
|
||||
return Gossiper.intervalInMillis * 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue