Skip to content

Commit a6d3c06

Browse files
Adding wait_other_notice=True for ccm
1 parent 58b3c71 commit a6d3c06

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/integration/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def setup_package():
109109
cluster.populate(3)
110110

111111
log.debug("Starting ccm test cluster")
112-
cluster.start(wait_for_binary_proto=True)
112+
cluster.start(wait_for_binary_proto=True, wait_other_notice=True)
113113
except Exception:
114114
log.exception("Failed to start ccm cluster:")
115115
raise
@@ -134,7 +134,7 @@ def use_multidc(dc_list):
134134
cluster.populate(dc_list)
135135

136136
log.debug("Starting ccm test cluster")
137-
cluster.start(wait_for_binary_proto=True)
137+
cluster.start(wait_for_binary_proto=True, wait_other_notice=True)
138138
except Exception:
139139
log.exception("Failed to start ccm cluster:")
140140
raise

tests/integration/standard/test_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_connection_error(self):
5151
# Ensure the nodes are actually down
5252
self.assertRaises(NoHostAvailable, session.execute, "USE test3rf")
5353
finally:
54-
get_cluster().start(wait_for_binary_proto=True)
54+
get_cluster().start(wait_for_binary_proto=True, wait_other_notice=True)
5555

5656
self.assertGreater(cluster.metrics.stats.connection_errors, 0)
5757

0 commit comments

Comments
 (0)