From 050cf6cb124e4fcf6565e71f8192422d12080446 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sat, 16 May 2020 23:45:02 -0500 Subject: [PATCH] Bump the total lp_check allowed time to 6 hours from 2, to account for publisher maintenance. --- ci/lp_check.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/lp_check.py b/ci/lp_check.py index 2b2261c..c124f13 100755 --- a/ci/lp_check.py +++ b/ci/lp_check.py @@ -81,9 +81,11 @@ class LaunchpadCheck: # Getting the source is a prerequisite lp, ppa = self.verify_source_published(package, package_version) - # We're verifying every five minutes; never go to more than two hours - # (60 minutes × 2 hours) ÷ 5 minutes = 24 max iterations - for i in range(0, 24): + # We're verifying every five minutes; never go for more than six hours + # The reason this is so lengthy is to provide time for publisher + # maintenance on Sundays, which can take up to six hours + # (60 minutes × 6 hours) ÷ 5 minutes = 72 max iterations + for i in range(0, 72): print("Verifying if binaries are published,", (i*5), "minutes in.") need_sleep = False try: