Skip to content

Commit

Permalink
merges pedro/dd_metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
otherview committed Jan 9, 2023
1 parent ca1d73e commit b9d10cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/runner-scripts/wait-node-healthy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit b9d10cb

Please sign in to comment.