From 81a363fe165fa28ed5ebbc7210a5ba831ba045ca Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Thu, 22 Feb 2024 11:21:48 +0700 Subject: [PATCH] Update op-node-entrypoint --- op-node-entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-node-entrypoint b/op-node-entrypoint index b7ec9b6..8f2b1cd 100755 --- a/op-node-entrypoint +++ b/op-node-entrypoint @@ -7,7 +7,7 @@ if [[ -z "$OP_NODE_NETWORK" ]]; then fi # wait until local geth comes up (authed so will return 401 without token) -until [ "$(curl -s -w '%{http_code}' -o /dev/null "${OP_NODE_L2_ENGINE_RPC/ws/http}")" -eq 401 ]; do +until [ "$(curl -s -w '%{http_code}' -o /dev/null "${OP_NODE_L2_ENGINE_RPC}/ws/http")" -eq 401 ]; do echo "waiting for geth to be ready" sleep 5 done