From d755e668d622b86bda5881ee06d5525f5f12ec2e Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 24 Dec 2014 08:07:56 -0600 Subject: increase delay waiting for wheel job to start fixes #1543 --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index c109f149..74ff6b19 100644 --- a/tasks.py +++ b/tasks.py @@ -17,9 +17,9 @@ JENKINS_URL = "https://jenkins.cryptography.io/job/cryptography-wheel-builder" def wait_for_build_completed(session): - # Wait 3 seconds before actually checking if the build is complete, to + # Wait 20 seconds before actually checking if the build is complete, to # ensure that it had time to really start. - time.sleep(3) + time.sleep(20) while True: response = session.get( "{0}/lastBuild/api/json/".format(JENKINS_URL), -- cgit v1.2.3