diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-08-10 21:04:54 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-08-10 21:04:54 -0400 |
commit | 1353a89c447bccaea6520750d08bf658380ea249 (patch) | |
tree | 2f75947cc9d4e8869baf2c06e841e5e0e98adf7c | |
parent | 2a358f2f31662cac2f06f755c6070e7817708298 (diff) | |
download | build_control-1353a89c447bccaea6520750d08bf658380ea249.tar.gz |
Remove sleep delay scale factor
-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 } |