Can't transition from write survey to normal mode

patch by jasobrown; reviewed by driftx for CASSANDRA-9740
This commit is contained in:
Jason Brown 2015-07-08 14:11:12 -07:00
parent 7cebd0eeca
commit 52dbc3f1ba
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -907,7 +907,7 @@ public class StorageService extends NotificationBroadcasterSupport implements IE
public boolean isJoined()
{
return joined;
return joined && !isSurveyMode;
}
public void rebuild(String sourceDc)