jberragan commented on code in PR #153:
URL: 
https://github.com/apache/cassandra-analytics/pull/153#discussion_r2616113812


##########
cassandra-analytics-core/src/main/java/org/apache/cassandra/spark/data/PartitionedDataLayer.java:
##########
@@ -165,6 +162,10 @@ public static void validateReplicationFactor(@NotNull 
ConsistencyLevel consisten
         {
             return;
         }
+
+        
Preconditions.checkArgument(!ConsistencyLevel.EACH_QUORUM.equals(consistencyLevel),

Review Comment:
   Given it's an enum we can do:
   
   ```suggestion
           Preconditions.checkArgument(ConsistencyLevel.EACH_QUORUM != 
consistencyLevel,
   ```



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