Fix bad merge

This commit is contained in:
Joseph Henry 2023-05-01 14:21:45 -07:00
parent 6425f974fa
commit 81b13772b9
No known key found for this signature in database
GPG key ID: C45B33FF5EBC9344

View file

@ -119,10 +119,7 @@ time_zt_node2_start=`date +%s`
for ((s=0; s<=MAX_WAIT_SECS; s++))
do
<<<<<<< HEAD
echo "Checking for online status: $s"
=======
>>>>>>> dev
node1_online="$($ZT1 -j info | jq '.online' 2>/dev/null)"
node2_online="$($ZT2 -j info | jq '.online' 2>/dev/null)"
if [[ "$node1_online" == "true" ]]
@ -144,11 +141,8 @@ done
if [[ "$both_instances_online" != "true" ]]
then
echo "One or more instances of ZeroTier failed to come online. Aborting test." >&2
<<<<<<< HEAD
$ZT1 -j info
$ZT2 -j info
=======
>>>>>>> dev
exit 1
fi