debian: increase packages waiting timeout
This commit is contained in:
parent
15adc72606
commit
f2602a8d27
|
@ -1,7 +1,7 @@
|
||||||
def waitForRepoPackage(String packageName, Map params = [:]) {
|
def waitForRepoPackage(String packageName, Map params = [:]) {
|
||||||
def expectedVersion = params.expectedVersion ? params.expectedVersion : null
|
def expectedVersion = params.expectedVersion ? params.expectedVersion : null
|
||||||
def delay = params.delay ? params.delay : 30
|
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}'"
|
def message = "Waiting for package '${packageName}'"
|
||||||
if (expectedVersion != null) {
|
if (expectedVersion != null) {
|
||||||
|
|
Loading…
Reference in New Issue