From 708ea0afe8cb024a54c5a29504d562312bde8570 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Mon, 1 May 2023 13:50:35 -0700 Subject: [PATCH] Add debug traces to validation workflow --- .github/workflows/validate-1m-linux.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/validate-1m-linux.sh b/.github/workflows/validate-1m-linux.sh index 1e286cf06..8ba500d93 100755 --- a/.github/workflows/validate-1m-linux.sh +++ b/.github/workflows/validate-1m-linux.sh @@ -119,6 +119,7 @@ time_zt_node2_start=`date +%s` for ((s=0; s<=MAX_WAIT_SECS; s++)) do + echo "Checking for online status: $s" node1_online="$($ZT1 -j info | jq '.online' 2>/dev/null)" node2_online="$($ZT2 -j info | jq '.online' 2>/dev/null)" if [[ "$node1_online" == "true" ]] @@ -140,6 +141,8 @@ done if [[ "$both_instances_online" != "true" ]] then echo "One or more instances of ZeroTier failed to come online. Aborting test." >&2 + $ZT1 -j info + $ZT2 -j info exit 1 fi