aboutsummaryrefslogtreecommitdiffstats
path: root/tasks.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-12-24 07:18:50 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-12-24 07:18:50 -0800
commit06f6a4e7b2e89e588c75c4bf755c1bd0563f9e28 (patch)
treef94768390b03d52bce6680b957df9e13326c8b32 /tasks.py
parentea1133211fa914786ea082b0b7b5c3edbb4caf16 (diff)
parentd755e668d622b86bda5881ee06d5525f5f12ec2e (diff)
downloadcryptography-06f6a4e7b2e89e588c75c4bf755c1bd0563f9e28.tar.gz
cryptography-06f6a4e7b2e89e588c75c4bf755c1bd0563f9e28.tar.bz2
cryptography-06f6a4e7b2e89e588c75c4bf755c1bd0563f9e28.zip
Merge pull request #1575 from reaperhulk/more-delay
increase delay waiting for wheel job to start
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 2 insertions, 2 deletions
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),