This is an automated email from the ASF dual-hosted git repository.
brandonwilliams pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
The following commit(s) were added to refs/heads/trunk by this push:
new 1ce34209 Don't wait for other nodes to notice in transient
test_bootstrap_and_cleanup
1ce34209 is described below
commit 1ce342091c7ab9fd4cdfca227155e4b05a06a852
Author: Brandon Williams <[email protected]>
AuthorDate: Wed Jul 12 14:13:29 2023 -0500
Don't wait for other nodes to notice in transient test_bootstrap_and_cleanup
Patch by brandonwilliams; reviewed by bereng for CASSANDRA-18660
---
transient_replication_ring_test.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/transient_replication_ring_test.py
b/transient_replication_ring_test.py
index 5a20952b..47e68e01 100644
--- a/transient_replication_ring_test.py
+++ b/transient_replication_ring_test.py
@@ -181,7 +181,8 @@ class TestTransientReplicationRing(Tester):
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]]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]