You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sm...@apache.org on 2021/09/06 07:12:14 UTC

[cassandra-dtest] branch trunk updated: wait for node to be available in upgrade tests for Thrift for dense and sparse supercolumn tests

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

smiklosovic 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 2ed526a  wait for node to be available in upgrade tests for Thrift for dense and sparse supercolumn tests
2ed526a is described below

commit 2ed526a43d3a37b00ada500a0354955fecf1e61c
Author: Stefan Miklosovic <sm...@apache.org>
AuthorDate: Thu Aug 26 19:47:20 2021 +0200

    wait for node to be available in upgrade tests for Thrift for dense and sparse supercolumn tests
    
    patch by Stefan Miklosovic; reviewed by Benjamin Lerer for CASSANDRA-16892
---
 upgrade_tests/thrift_upgrade_test.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/upgrade_tests/thrift_upgrade_test.py b/upgrade_tests/thrift_upgrade_test.py
index 2cd6314..6de1c81 100644
--- a/upgrade_tests/thrift_upgrade_test.py
+++ b/upgrade_tests/thrift_upgrade_test.py
@@ -265,7 +265,7 @@ class TestUpgradeSuperColumnsThrough(Tester):
         node.stop()
         if node.get_cassandra_version() < '4':
            node.set_configuration_options(values={'start_rpc': 'true'})
-        node.start()
+        node.start(wait_for_binary_proto=True)
 
         cursor = self.patient_cql_connection(node, row_factory=dict_factory)
 
@@ -312,7 +312,7 @@ class TestUpgradeSuperColumnsThrough(Tester):
         node.stop()
         if node.get_cassandra_version() < '4':
             node.set_configuration_options(values={'start_rpc': 'true'})
-        node.start()
+        node.start(wait_for_binary_proto=True)
 
         if node.get_cassandra_version() < '4':
             client = get_thrift_client(host, port)
@@ -365,7 +365,7 @@ class TestUpgradeSuperColumnsThrough(Tester):
         node.stop()
         if not is_version_4_or_greater:
             node.set_configuration_options(values={'start_rpc': 'true'})
-        node.start()
+        node.start(wait_for_binary_proto=True)
 
         if not is_version_4_or_greater:
             client = get_thrift_client(host, port)

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