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 49e2a8d4 Fully establish cluster in setup
49e2a8d4 is described below

commit 49e2a8d4ad742560245b48ecd637e362cb1d74f7
Author: Brandon Williams <brandonwilli...@apache.org>
AuthorDate: Fri Apr 15 14:48:06 2022 -0500

    Fully establish cluster in setup
    
    Patch by brandonwilliams; reviewed by edimitrova for CASSANDRA-17366
---
 gossip_test.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gossip_test.py b/gossip_test.py
index 00343241..dad0f825 100644
--- a/gossip_test.py
+++ b/gossip_test.py
@@ -104,18 +104,18 @@ class TestGossip(Tester):
         # Add dc1 nodes
         node1 = self._cluster_create_node(1)
         cluster.add(node1, True, data_center='dc1')
-        node1.start()
+        node1.start(wait_for_binary_proto=True)
         node2 = self._cluster_create_node(2)
         cluster.add(node2, False, data_center='dc1')
-        node2.start()
+        node2.start(wait_for_binary_proto=True)
 
         # Add dc2 nodes
         node3 = self._cluster_create_node(3)
         cluster.add(node3, True, data_center='dc2')
-        node3.start()
+        node3.start(wait_for_binary_proto=True)
         node4 = self._cluster_create_node(4)
         cluster.add(node4, False, data_center='dc2')
-        node4.start()
+        node4.start(wait_for_binary_proto=True)
 
         # Stop cluster
         for node in cluster.nodelist():


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to