mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.2' into cassandra-3.0
This commit is contained in:
commit
0663ebbd79
|
|
@ -1,6 +1,7 @@
|
|||
3.0.4
|
||||
* Hadoop integration is incompatible with Cassandra Driver 3.0.0 (CASSANDRA-11001)
|
||||
|
||||
Merged from 2.2.6
|
||||
* Gossiper#isEnabled is not thread safe (CASSANDRA-11116)
|
||||
|
||||
3.0.3
|
||||
* Remove double initialization of newly added tables (CASSANDRA-11027)
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ public class Gossiper implements IFailureDetectionEventListener, GossiperMBean
|
|||
SILENT_SHUTDOWN_STATES.add(VersionedValue.STATUS_BOOTSTRAPPING);
|
||||
}
|
||||
|
||||
private ScheduledFuture<?> scheduledGossipTask;
|
||||
private volatile ScheduledFuture<?> scheduledGossipTask;
|
||||
private static final ReentrantLock taskLock = new ReentrantLock();
|
||||
public final static int intervalInMillis = 1000;
|
||||
public final static int QUARANTINE_DELAY = StorageService.RING_DELAY * 2;
|
||||
|
|
|
|||
Loading…
Reference in New Issue