Skip to content

Commit

Permalink
Don't wait for other nodes to notice in transient test_bootstrap_and_…
Browse files Browse the repository at this point in the history
…cleanup

Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18660
  • Loading branch information
driftx committed Jul 13, 2023
1 parent f61dcb2 commit 1ce3420
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion transient_replication_ring_test.py
Expand Up @@ -181,7 +181,8 @@ def test_bootstrap_and_cleanup(self):
for i in range(1, 40, 2):
self.insert_row(i, i, i, main_session)

nodes[1].start(wait_for_binary_proto=True)
# we don't need to wait for other nodes, see CASSANDRA-18660
nodes[1].start(wait_for_binary_proto=True, wait_other_notice=False)

sessions = [self.exclusive_cql_connection(node) for node in [self.node1, self.node2, self.node3]]

Expand Down

0 comments on commit 1ce3420

Please sign in to comment.