From fe3d9251f22e50eac635677fca4ffa8bca55c893 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Wed, 28 Mar 2018 13:03:19 -0400 Subject: Increase indexing timeout period. --- jenkins/dispatch.groovy | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index 2da1a79..49207c2 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -26,8 +26,12 @@ this.conda_installers = ["Linux-py2":"Miniconda2-${CONDA_INSTALLER_VERSION}-Lin "MacOSX-py3":"Miniconda3-${CONDA_INSTALLER_VERSION}-MacOSX-x86_64.sh"] // Values controlling the conda index stage which happens after any packages are created. -this.max_publication_tries = 5 -this.publication_lock_wait_s = 10 +// Closely timed builds that publish to the same location will require the retry period +// defined here be long enough to cover the longest expected indexing operation so that +// the build does not terminate without indexing all packages that were produced between +// multiple platforms. +this.max_publication_tries = 10 +this.publication_lock_wait_s = 30 // Name of YAML file that contains global pinning information to use during the build. // Packages that appear in this file will be pinned to the version indicated. -- cgit