mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
e5d997374a
|
|
@ -237,6 +237,7 @@
|
|||
|
||||
|
||||
3.11.3
|
||||
* Don't use guava collections in the non-system keyspace jmx attributes (CASSANDRA-12271)
|
||||
* Allow existing nodes to use all peers in shadow round (CASSANDRA-13851)
|
||||
* Fix cqlsh to read connection.ssl cqlshrc option again (CASSANDRA-14299)
|
||||
* Downgrade log level to trace for CommitLogSegmentManager (CASSANDRA-14370)
|
||||
|
|
|
|||
|
|
@ -4926,7 +4926,8 @@ public class StorageService extends NotificationBroadcasterSupport implements IE
|
|||
|
||||
public List<String> getNonSystemKeyspaces()
|
||||
{
|
||||
return Schema.instance.getNonSystemKeyspaces();
|
||||
List<String> nonKeyspaceNamesList = new ArrayList<>(Schema.instance.getNonSystemKeyspaces());
|
||||
return Collections.unmodifiableList(nonKeyspaceNamesList);
|
||||
}
|
||||
|
||||
public List<String> getNonLocalStrategyKeyspaces()
|
||||
|
|
|
|||
Loading…
Reference in New Issue