From 757f0b039accb365190e70c52cdca515e1b3c6bf Mon Sep 17 00:00:00 2001 From: crowetic <5431064+crowetic@users.noreply.github.com> Date: Sun, 23 Mar 2025 06:20:57 -0700 Subject: [PATCH] Update auto-fix-qortal.sh extended time for initial check upon first API failure --- auto-fix-qortal.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto-fix-qortal.sh b/auto-fix-qortal.sh index a846d27..c0233d7 100644 --- a/auto-fix-qortal.sh +++ b/auto-fix-qortal.sh @@ -105,8 +105,8 @@ check_qortal() { core_running=$(curl -s localhost:12391/admin/status) if [ -z "$core_running" ]; then - echo "${RED}CORE DOES NOT SEEM TO BE RUNNING, WAITING 1 MINUTE...${NC}\n" - sleep 60 + echo "${RED}CORE DOES NOT SEEM TO BE RUNNING, WAITING 3 MINUTES...${NC}\n" + sleep 180 fi LOCAL_VERSION=$(curl -s localhost:12391/admin/info | grep -oP '"buildVersion":"qortal-\K[^-]*' | sed 's/-.*//' | tr -d '.')