diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-24 08:07:56 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-12-24 08:07:56 -0600 |
commit | d755e668d622b86bda5881ee06d5525f5f12ec2e (patch) | |
tree | f94768390b03d52bce6680b957df9e13326c8b32 | |
parent | ea1133211fa914786ea082b0b7b5c3edbb4caf16 (diff) | |
download | cryptography-d755e668d622b86bda5881ee06d5525f5f12ec2e.tar.gz cryptography-d755e668d622b86bda5881ee06d5525f5f12ec2e.tar.bz2 cryptography-d755e668d622b86bda5881ee06d5525f5f12ec2e.zip |
increase delay waiting for wheel job to start
fixes #1543
-rw-r--r-- | tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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), |