From 30dd8cfd4aa55af63fa4e7576f800ecf95a585f5 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 21 Jul 2016 10:21:14 -0700 Subject: [PATCH] test-queue-worker-reload: Increase sleep resolution. --- tools/test-queue-worker-reload | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test-queue-worker-reload b/tools/test-queue-worker-reload index de20967c2c..a62a014812 100755 --- a/tools/test-queue-worker-reload +++ b/tools/test-queue-worker-reload @@ -41,8 +41,8 @@ def check_worker_launch(logfile): log_output = u'' print("Polling logfile", end='') # Attempt to poll the log file for 10 sec. to see if all worker threads are launched. - for i in range(30): - time.sleep(1) + for i in range(100): + time.sleep(0.3) sys.stdout.write('.') sys.stdout.flush() logfile.seek(0)