mirror of
https://github.com/lubuntu-team/ci-tooling.git
synced 2025-05-04 06:01:28 +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
|
# Getting the source is a prerequisite
|
||||||
lp, ppa = self.verify_source_published(package, package_version)
|
lp, ppa = self.verify_source_published(package, package_version)
|
||||||
|
|
||||||
# We're verifying every five minutes; never go to more than two hours
|
# We're verifying every five minutes; never go for more than six hours
|
||||||
# (60 minutes × 2 hours) ÷ 5 minutes = 24 max iterations
|
# The reason this is so lengthy is to provide time for publisher
|
||||||
for i in range(0, 24):
|
# 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.")
|
print("Verifying if binaries are published,", (i*5), "minutes in.")
|
||||||
need_sleep = False
|
need_sleep = False
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user