We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a172c commit f8634efCopy full SHA for f8634ef
1 file changed
system_tests/system_test_common.py
@@ -150,12 +150,10 @@ def check_wait_for_all_nodes_stopped_output(output):
150
"""
151
Check the output of the manager for the part where it waits for all nodes to be stopped.
152
153
- assert next_output_matches(output, r"Waiting for all nodes to be stopped")
+ assert next_output_matches(output, r"Waiting for .* to be stopped")
154
while next_output_matches(output, r"Still waiting for .* to be stopped"):
155
pass
156
- assert not next_output_matches(
157
- output, r"Giving up on waiting for all nodes to be stopped"
158
- )
+ assert not next_output_matches(output, r"Giving up on waiting for .* to be stopped")
159
160
161
def check_wait_for_all_nodes_started_output(output):
0 commit comments