cassandra-analytics-core/src/main/java/org/apache/cassandra/spark/bulkwriter/token/ConsistencyLevel.java [102:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @Override
            public boolean isLocal()
            {
                return true;
            }

            @Override
            public boolean checkConsistency(Collection<? extends CassandraInstance> failedInsts,
                                            ReplicationFactor replicationFactor,
                                            String localDC)
            {
                Preconditions.checkArgument(replicationFactor.getReplicationStrategy() != ReplicationFactor.ReplicationStrategy.SimpleStrategy,
                                            "LOCAL_QUORUM doesn't make sense for SimpleStrategy keyspaces");

                int rf = replicationFactor.getOptions().get(localDC);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cassandra-analytics-core/src/main/java/org/apache/cassandra/spark/bulkwriter/token/ConsistencyLevel.java [156:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @Override
            public boolean isLocal()
            {
                return true;
            }

            @Override
            public boolean checkConsistency(Collection<? extends CassandraInstance> failedInsts,
                                            ReplicationFactor replicationFactor,
                                            String localDC)
            {
                Preconditions.checkArgument(replicationFactor.getReplicationStrategy() != ReplicationFactor.ReplicationStrategy.SimpleStrategy,
                                            "LOCAL_QUORUM doesn't make sense for SimpleStrategy keyspaces");

                int rf = replicationFactor.getOptions().get(localDC);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



