debian: increase packages waiting timeout

This commit is contained in:
wpetit 2021-12-16 09:24:39 +01:00
parent 15adc72606
commit f2602a8d27
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 : 1200
def waitTimeout = params.timeout ? params.timeout : 2400
def message = "Waiting for package '${packageName}'"
if (expectedVersion != null) {