From 71aa91c1c9762c08efd189e8eecf4b650db25424 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Wed, 6 Sep 2023 16:59:55 -0400 Subject: [PATCH] increase configbaker timeout Based on discussion here: https://dataverse.zulipchat.com/#narrow/stream/375812-containers/topic/running.20using.20compose --- modules/container-configbaker/scripts/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/container-configbaker/scripts/bootstrap.sh b/modules/container-configbaker/scripts/bootstrap.sh index 1aa9e232953..f9f97e85a5a 100644 --- a/modules/container-configbaker/scripts/bootstrap.sh +++ b/modules/container-configbaker/scripts/bootstrap.sh @@ -13,7 +13,7 @@ function usage() { echo "" echo "Parameters:" echo "instanceUrl - Location on container network where to reach your instance. Default: 'http://dataverse:8080'" - echo " timeout - Provide how long to wait for the instance to become available (using wait4x). Default: '2m'" + echo " timeout - Provide how long to wait for the instance to become available (using wait4x). Default: '3m'" echo " persona - Configure persona to execute. Calls ${BOOTSTRAP_DIR}//init.sh. Default: 'base'" echo "" echo "Note: This script will wait for the Dataverse instance to be available before executing the bootstrapping." @@ -24,7 +24,7 @@ function usage() { # Set some defaults as documented DATAVERSE_URL=${DATAVERSE_URL:-"http://dataverse:8080"} -TIMEOUT=${TIMEOUT:-"2m"} +TIMEOUT=${TIMEOUT:-"3m"} while getopts "u:t:h" OPTION do