Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase configbaker timeout #9886

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/container-configbaker/scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}/<persona>/init.sh. Default: 'base'"
echo ""
echo "Note: This script will wait for the Dataverse instance to be available before executing the bootstrapping."
Expand All @@ -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
Expand Down