From b9d10cbbd5932497f0480f25a50a80717ae56751 Mon Sep 17 00:00:00 2001 From: otherview Date: Mon, 9 Jan 2023 12:40:08 +0000 Subject: [PATCH] merges pedro/dd_metrics --- .github/workflows/runner-scripts/wait-node-healthy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/runner-scripts/wait-node-healthy.sh b/.github/workflows/runner-scripts/wait-node-healthy.sh index 9aab2cac53..a322e9aaed 100755 --- a/.github/workflows/runner-scripts/wait-node-healthy.sh +++ b/.github/workflows/runner-scripts/wait-node-healthy.sh @@ -56,10 +56,10 @@ time=0 while ! [[ $net_status = *\"OverallHealth\":true* ]] do - net_status=$(curl -s --request POST "http://${host}:${port}" \ + net_status=$(curl --request POST "http://${host}:${port}" \ --header 'Content-Type: application/json' \ - --data-raw '{ "method":"obscuro_health", "params":null, "id":1, "jsonrpc":"2.0" }') - echo $net_status + --data-raw '{ "method":"obscuro_health", "params":null, "id":1, "jsonrpc":"2.0" }') || true + echo $net_status sleep 1 ((time=time+1))