diff options
-rw-r--r-- | jenkins/dispatch.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |