This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
commit 9734ad525bf5efd4f127cf425221b5ba6d27df51 Author: Sam Tunnicliffe <[email protected]> AuthorDate: Fri Nov 17 17:13:34 2023 +0000 [CEP-21] Rename cluster metadata system keyspace --- cqlsh_tests/test_cqlsh.py | 2 +- tools/assertions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cqlsh_tests/test_cqlsh.py b/cqlsh_tests/test_cqlsh.py index 76d1f330..4452f153 100644 --- a/cqlsh_tests/test_cqlsh.py +++ b/cqlsh_tests/test_cqlsh.py @@ -1043,7 +1043,7 @@ CREATE OR REPLACE AGGREGATE test.average(int) expected_keyspaces = ['system_schema', 'system', 'system_traces', 'system_views', 'system_auth', 'system_distributed', 'system_virtual_schema'] if self.cluster.version() >= LooseVersion('5.1'): - expected_keyspaces.append('cluster_metadata') + expected_keyspaces.append('system_cluster_metadata') node1, = self.cluster.nodelist() output, err = self.run_cqlsh(node1, "DESCRIBE KEYSPACES") diff --git a/tools/assertions.py b/tools/assertions.py index ea3f932c..80e18eae 100644 --- a/tools/assertions.py +++ b/tools/assertions.py @@ -302,7 +302,7 @@ def assert_stderr_clean(err, acceptable_errors=None): # Warnings for backward compatibility should be logged CASSANDRA-15234 ".*parameters have been deprecated. They have new names and/or value format; " + "For more information, please refer to NEWS.txt*", - ".*Error while computing token map for keyspace cluster_metadata with datacenter .*"] + ".*Error while computing token map for keyspace system_cluster_metadata with datacenter .*"] regex_str = r"^({}|\s*|\n)*$".format("|".join(acceptable_errors)) err_str = err.strip() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
