Skip to content

Commit 1d6d87a

Browse files
committed
Fix wait timeout
1 parent 3723c1b commit 1d6d87a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

configure-devstack.sh

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ HYPERV_PASSWORD=$ADMIN_PASSWORD
2222
NOVA_CONF_FILE=/etc/nova/nova.conf
2323
CEILOMETER_CONF_FILE=/etc/ceilometer/ceilometer.conf
2424

25+
MAX_WAIT_SECONDS=600
26+
2527
BASEDIR=$(dirname $0)
2628

2729
. $BASEDIR/utils.sh

utils.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ wait_for_listening_port () {
4141
HOST=$1
4242
PORT=$2
4343
TIMEOUT=$3
44-
exec_with_retry "nc -z -w$TIMEOUT $HOST $PORT" 10 5
44+
exec_with_retry "nc -z -w $TIMEOUT $HOST $PORT" 10 5
4545
}
4646

4747
run_ssh_cmd () {

0 commit comments

Comments
 (0)