From 0e4d1e2b48e3949d49e156ef2a0fb926fdd3b5a7 Mon Sep 17 00:00:00 2001 From: Emiel Por Date: Fri, 23 Aug 2024 14:47:28 -0400 Subject: [PATCH] Increase sleep times for windows slow-joiner problems. --- tests/test_tracing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_tracing.py b/tests/test_tracing.py index b3235740..e94fcd35 100644 --- a/tests/test_tracing.py +++ b/tests/test_tracing.py @@ -27,7 +27,7 @@ def test_trace_writer(unused_port): tracing_distributor.start() # Wait for slow-joiner of ZMQ sockets. - time.sleep(0.1) + time.sleep(0.3) try: with writer.open(FNAME): @@ -43,7 +43,7 @@ def test_trace_writer(unused_port): trace_instant(INSTANT_NAME) # Wait for all messages to pass through the system and be written out. - time.sleep(0.1) + time.sleep(0.3) finally: trace_disconnect()