debian.waitForRepoPackage(): increse default timeout to 20m

This commit is contained in:
wpetit 2020-03-24 10:50:15 +01:00
parent ea2412eeb2
commit 8a89c4b3ae
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
def waitForRepoPackage(String packageName, Map params = [:]) {
def expectedVersion = params.expectedVersion ? params.expectedVersion : null
def delay = params.delay ? params.delay : 30
def waitTimeout = params.timeout ? params.timeout : 600
def waitTimeout = params.timeout ? params.timeout : 1200
def message = "Waiting for package '${packageName}'"
if (expectedVersion != null) {