You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by br...@apache.org on 2020/08/21 16:17:02 UTC

[cassandra-dtest] branch master updated: Improve repair dtests stability by waiting for binary proto

This is an automated email from the ASF dual-hosted git repository.

brandonwilliams pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/master by this push:
     new 79c0120  Improve repair dtests stability by waiting for binary proto
79c0120 is described below

commit 79c0120fbd659a7a5169ed945279dfed688705d8
Author: Bereng <be...@gmail.com>
AuthorDate: Mon Jul 27 16:23:53 2020 +0200

    Improve repair dtests stability by waiting for binary proto
    
    Patch by Berenguer Blasi, reviewed by Ekaterina Dimitrova and
    brandonwilliams for CASSANDRA-15986
---
 repair_tests/repair_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/repair_tests/repair_test.py b/repair_tests/repair_test.py
index 2c0ca81..fba0938 100644
--- a/repair_tests/repair_test.py
+++ b/repair_tests/repair_test.py
@@ -85,7 +85,7 @@ class BaseRepairTest(Tester):
 
         if restart:
             for node in stopped_nodes:
-                node.start(wait_other_notice=True)
+                node.start(wait_for_binary_proto=True, wait_other_notice=True)
 
     def _populate_cluster(self, start=True):
         cluster = self.cluster
@@ -95,7 +95,7 @@ class BaseRepairTest(Tester):
         cluster.set_configuration_options(values={'hinted_handoff_enabled': False})
         cluster.set_batch_commitlog(enabled=True)
         logger.debug("Starting cluster..")
-        cluster.populate(3).start()
+        cluster.populate(3).start(wait_for_binary_proto=True, wait_other_notice=True)
         node1, node2, node3 = cluster.nodelist()
 
         session = self.patient_cql_connection(node1, retry_policy=FlakyRetryPolicy(max_retries=15))


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