From 1353a89c447bccaea6520750d08bf658380ea249 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Thu, 10 Aug 2017 21:04:54 -0400 Subject: Remove sleep delay scale factor --- jenkins/dispatch.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index c3c701d..6dec068 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -262,7 +262,7 @@ node(LABEL) { println("Lockfile already exists, waiting for it to be released...") while ( tries_remaining > 0) { println("Waiting ${this.publication_lock_wait_s}s for lockfile release...") - sleep(this.publication_lock_wait_s * 1000) + sleep(this.publication_lock_wait_s) if ( !file.exists() ) { break } -- cgit