From 7a909e678f6c0a14e736d13de9f1511d7e71adc1 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 5 Nov 2015 10:43:13 -0700 Subject: [PATCH] Increase polling interval When we used the filesystem, we polled for a run's status every 10s; that was more aggressive than necessary. Increase to 60s to avoid overloading paddles. Signed-off-by: Zack Cerza --- teuthology/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/results.py b/teuthology/results.py index 12ced2731b..5c0ea7da7d 100644 --- a/teuthology/results.py +++ b/teuthology/results.py @@ -53,7 +53,7 @@ def results(archive_dir, name, email, timeout, dry_run): if not unfinished_jobs: log.info('Tests finished! gathering results...') break - time.sleep(10) + time.sleep(60) (subject, body) = build_email_body(name) -- 2.39.5