From 9a07aafabb919dc1a94af7b55b32cb24457622e4 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Tue, 18 Mar 2025 12:15:07 +0100 Subject: [PATCH] fix the monitoring --- show-status.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/show-status.sh b/show-status.sh index c3d81508..69c5c8af 100755 --- a/show-status.sh +++ b/show-status.sh @@ -37,10 +37,10 @@ for part in "${parts[@]}"; do if [[ "$result" == *"syncing"* && $? -eq 1 ]]; then # Allow exit status 1 if result contains "syncing" - true + echo "hit syncing" elif [[ "$result" == *"lagging"* && $? -eq 1 ]]; then # Allow exit status 1 if result contains "syncing" - true + echo "hit lagging" elif [ $? -ne 0 ]; then any_failure=true fi