smiklosovic commented on code in PR #2046:
URL: https://github.com/apache/cassandra/pull/2046#discussion_r1053521539


##########
src/java/org/apache/cassandra/service/StorageService.java:
##########
@@ -328,9 +341,9 @@ public enum Mode { STARTING, NORMAL, JOINING, LEAVING, 
DECOMMISSIONED, MOVING, D
     private Collection<Token> bootstrapTokens = null;
 
     // true when keeping strict consistency while bootstrapping
-    public static final boolean useStrictConsistency = 
Boolean.parseBoolean(System.getProperty("cassandra.consistent.rangemovement", 
"true"));
-    private static final boolean allowSimultaneousMoves = 
Boolean.parseBoolean(System.getProperty("cassandra.consistent.simultaneousmoves.allow","false"));
-    private static final boolean joinRing = 
Boolean.parseBoolean(System.getProperty("cassandra.join_ring", "true"));
+    public static final boolean useStrictConsistency = 
CONSISTENT_RANGEMOVEMENT.getBoolean();

Review Comment:
   I would call these properties with `_` between the words even their keys are 
not with `_`. We can deal with this later to deprecate the old keys as it was 
done in DatabaseDescriptor.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to