aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Copeland <ben.copeland@linaro.org>2016-05-31 11:23:16 +0100
committerBen Copeland <ben.copeland@linaro.org>2016-06-01 08:58:09 +0000
commitabe6951ac8eaf4c2d9387b59834213db77a02550 (patch)
treea6ca6111c92c60acf1830409e6d955e675b2ece6
parente1acc139909bb69680e4656bbd191fc613f96582 (diff)
s3_sanity: increase sleep time
We have to wait for the buckets to sync, latest s3_sanity email showed invalid "out of sync" messages, due to the file still syncing between buckets. Increase timeout to 10mins (two extra mins). Change-Id: Ic85b4c5a2b50001ba6e760e8b3054d4b3705b12b Reviewed-on: https://review.linaro.org/12322 Reviewed-by: Ben Copeland <ben.copeland@linaro.org>
-rw-r--r--license_protected_downloads/management/commands/s3_sanity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/license_protected_downloads/management/commands/s3_sanity.py b/license_protected_downloads/management/commands/s3_sanity.py
index c7d6219..7d2ebb5 100644
--- a/license_protected_downloads/management/commands/s3_sanity.py
+++ b/license_protected_downloads/management/commands/s3_sanity.py
@@ -47,7 +47,7 @@ class Command(BaseCommand):
if changed:
# Wait for the files to sync between buckets.
- time.sleep(480)
+ time.sleep(600)
for bucket_name in slave_bucket_name:
for key, value in (master_keys - self.slave_bucket(bucket_name)):