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 e0a2f7da26603f9140e0de4535dda216fae39a8c Author: Alex Petrov <[email protected]> AuthorDate: Fri Sep 29 12:29:54 2023 +0200 [CEP-21] Adjust error messages when replacing using the same address --- replace_address_test.py | 5 ++++- transient_replication_ring_test.py | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/replace_address_test.py b/replace_address_test.py index 83e2d82c..3202164e 100644 --- a/replace_address_test.py +++ b/replace_address_test.py @@ -378,7 +378,10 @@ class TestReplaceAddress(BaseReplaceAddressTest): @jira_ticket CASSANDRA-14463 """ self.fixture_dtest_setup.ignore_log_patterns = list(self.fixture_dtest_setup.ignore_log_patterns) + [ - r'Exception encountered during startup'] + r'Couldn\'t find table with id 5bc52802-de25-35ed-aeab-188eecebb090', # system_auth + r'Exception encountered during startup', + r'Unknown endpoint' + ] # see CASSANDRA-17611 if self.cluster.version() < '4.0': diff --git a/transient_replication_ring_test.py b/transient_replication_ring_test.py index 51a008f3..7d7cfb25 100644 --- a/transient_replication_ring_test.py +++ b/transient_replication_ring_test.py @@ -446,7 +446,6 @@ class TestTransientReplicationRing(Tester): self.insert_row(i, i, i, main_session) replacement_address = self.node2.address() - self.node2.stop(wait_other_notice=True) self.cluster.remove(self.node2) self.node2 = Node('replacement', cluster=self.cluster, auto_bootstrap=True, thrift_interface=None, storage_interface=(replacement_address, 7000), --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
