mirror of https://github.com/apache/cassandra
Can't transition from write survey to normal mode
patch by jasobrown; reviewed by driftx for CASSANDRA-9740
This commit is contained in:
parent
7cebd0eeca
commit
52dbc3f1ba
|
|
@ -1,4 +1,5 @@
|
|||
2.0.17
|
||||
* Can't transition from write survey to normal mode (CASSANDRA-9740)
|
||||
* Avoid NPE in AuthSuccess#decode (CASSANDRA-9727)
|
||||
* Add listen_address to system.local (CASSANDRA-9603)
|
||||
* Bug fixes to resultset metadata construction (CASSANDRA-9636)
|
||||
|
|
|
|||
|
|
@ -907,7 +907,7 @@ public class StorageService extends NotificationBroadcasterSupport implements IE
|
|||
|
||||
public boolean isJoined()
|
||||
{
|
||||
return joined;
|
||||
return joined && !isSurveyMode;
|
||||
}
|
||||
|
||||
public void rebuild(String sourceDc)
|
||||
|
|
|
|||
Loading…
Reference in New Issue