ci/aws/windows: Use 5s sleep instead of 2s for glory command

This commit is contained in:
Anmol Sethi 2022-12-16 03:06:14 -08:00
parent 888fa88009
commit 26a5086e37
No known key found for this signature in database
GPG key ID: 25BC68888A99A8BA

View file

@ -533,7 +533,7 @@ EOF
printf '%s\n' "$gen_init_ps1" >&2
warn '4. Run the following to be notified once installation is successful:'
cat <<EOF
ssh-keygen -R ${REMOTE_HOST##*@} && until ssh $REMOTE_HOST d2 --version; do echo 'failed: retrying in 2s' && sleep 2; done && printf 'success\a\n'
ssh-keygen -R ${REMOTE_HOST##*@} && until ssh $REMOTE_HOST d2 --version; do echo 'failed: retrying in 5s' && sleep 5; done && printf 'success\a\n'
EOF
}