Increase healthcheck ping timeout (#1627)

This commit is contained in:
clement-z 2021-01-19 02:28:17 +01:00 committed by GitHub
parent 53d3f05b7a
commit 623e4541c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ then
HOST="google.com"
fi
ping -c 2 -w 5 $HOST # Get at least 2 responses and timeout after 5 seconds
ping -c 2 -w 10 $HOST # Get at least 2 responses and timeout after 10 seconds
STATUS=$?
if [[ ${STATUS} -ne 0 ]]
then