This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
commit e607770234c21c96f589b6d7f43b0ed2b22c59fe Author: Sam Tunnicliffe <[email protected]> AuthorDate: Mon Nov 13 19:14:27 2023 +0000 [CEP-21] Wait longer for startup to make r/w counts more predictible --- client_request_metrics_local_remote_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client_request_metrics_local_remote_test.py b/client_request_metrics_local_remote_test.py index 8d817f9f..ab2adc43 100644 --- a/client_request_metrics_local_remote_test.py +++ b/client_request_metrics_local_remote_test.py @@ -186,6 +186,9 @@ def setup_test(obj): cluster.start() + # wait for auth setup so we don't have to compensate for the reads/writes it may trigger + node.watch_log_for("Created default superuser role 'cassandra'", timeout=60) + session = obj.patient_exclusive_cql_connection(node) obj.patient_exclusive_cql_connection(node2) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
