Skip to content

Commit

Permalink
fix nc issue erigon rpc daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Nov 29, 2024
1 parent b0a857b commit 4ad8512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/erigon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ defaultCommandRPCDaemonTemplate: |
- sh
- -ac
- >
while ! nc -z 127.0.0.1 9090; do sleep 1; done;
until timeout 1 bash -c ">/dev/tcp/127.0.0.1/9090" 2>/dev/null; do echo "Waiting for erigon..."; sleep 1; done;
exec rpcdaemon
--datadir=/data
--private.api.addr=127.0.0.1:9090
Expand Down

0 comments on commit 4ad8512

Please sign in to comment.