From b46d2ea562c777b869373c9b92922be987053e65 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 20 May 2023 02:27:27 +0200 Subject: [PATCH] Increase timeout --- run/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/check.sh b/run/check.sh index acfc33b..9aaa677 100644 --- a/run/check.sh +++ b/run/check.sh @@ -4,7 +4,7 @@ set -u [ ! -f "/run/qemu.pid" ] && echo "QEMU not running yet.." && exit 0 # Retrieve IP from guest VM for Docker healthcheck -RESPONSE=$(curl -s -m 6 -S http://127.0.0.1:2210/read?command=10 2>&1) +RESPONSE=$(curl -s -m 16 -S http://127.0.0.1:2210/read?command=10 2>&1) if [[ ! "${RESPONSE}" =~ "\"success\"" ]] ; then echo "Failed to connect to guest: $RESPONSE" && exit 1