diff --git a/cluster/scripts/lodestar/wait-for-charon.sh b/cluster/scripts/lodestar/wait-for-charon.sh index 5010094..de6b44b 100755 --- a/cluster/scripts/lodestar/wait-for-charon.sh +++ b/cluster/scripts/lodestar/wait-for-charon.sh @@ -4,7 +4,7 @@ INFO="[ INFO | lodestar-wait ]" # Wait for Charon to be ready while true; do - status_code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3620/readyz) + status_code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3620/livez) if [ "$status_code" -eq 200 ]; then echo "$INFO Charon is ready. Lodestar can start." break