test/cases/ubi-wsl: double ssh timeout

This times out on occasion, give azure and windows a bit more time.
This commit is contained in:
Sanne Raymaekers 2023-08-14 14:50:45 +02:00 committed by Alexander Todorov
parent 8f1dfe5e1b
commit e7e6a9095a

View file

@ -206,7 +206,7 @@ HOST=$($AZURE_CMD vm list-ip-addresses \
greenprint "🛃 Wait until sshd is up"
for LOOP_COUNTER in {0..30}; do
for LOOP_COUNTER in {0..60}; do
if ssh-keyscan "$HOST" > /dev/null 2>&1; then
greenprint "up!"
break