aboutsummaryrefslogtreecommitdiff
path: root/jenkins
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2017-08-10 21:04:54 -0400
committerMatt Rendina <mrendina@stsci.edu>2017-08-10 21:04:54 -0400
commit1353a89c447bccaea6520750d08bf658380ea249 (patch)
tree2f75947cc9d4e8869baf2c06e841e5e0e98adf7c /jenkins
parent2a358f2f31662cac2f06f755c6070e7817708298 (diff)
downloadbuild_control-1353a89c447bccaea6520750d08bf658380ea249.tar.gz
Remove sleep delay scale factor
Diffstat (limited to 'jenkins')
-rw-r--r--jenkins/dispatch.groovy2
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
}