mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into cassandra-4.1
This commit is contained in:
commit
2f0adfac2b
|
|
@ -1,6 +1,7 @@
|
|||
4.1.4
|
||||
* Skip ColumnFamilyStore#topPartitions initialization when client or tool mode (CASSANDRA-18697)
|
||||
Merged from 4.0:
|
||||
* Fix NTS log message when an unrecognized strategy option is passed (CASSANDRA-18679)
|
||||
* Fix BulkLoader ignoring cipher suites options (CASSANDRA-18582)
|
||||
* Migrate Python optparse to argparse (CASSANDRA-17914)
|
||||
Merged from 3.11:
|
||||
|
|
|
|||
|
|
@ -90,7 +90,6 @@ public class NetworkTopologyStrategy extends AbstractReplicationStrategy
|
|||
|
||||
datacenters = Collections.unmodifiableMap(newDatacenters);
|
||||
aggregateRf = ReplicationFactor.withTransient(replicas, trans);
|
||||
logger.info("Configured datacenter replicas are {}", FBUtilities.toString(datacenters));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -324,6 +323,7 @@ public class NetworkTopologyStrategy extends AbstractReplicationStrategy
|
|||
throw new ConfigurationException("Following datacenters have active nodes and must be present in replication options for keyspace " + SchemaConstants.AUTH_KEYSPACE_NAME + ": " + differenceSet.toString());
|
||||
}
|
||||
}
|
||||
logger.info("Configured datacenter replicas are {}", FBUtilities.toString(datacenters));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue