mirror of
https://github.com/lubuntu-team/ci-tooling.git
synced 2025-03-10 06:31:09 +00:00
Bump the total lp_check allowed time to 6 hours from 2, to account for publisher maintenance.
This commit is contained in:
parent
082ee862b0
commit
050cf6cb12
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user