File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,18 @@ jobs:
3131 mirrorNodeVersion : v0.133.0
3232 mirrorNodePortRest : 5551
3333 mirrorNodePortGrpc : 5600
34+ mirrorNodePortWeb3Rest : 8545
3435
3536 - name : Wait for Mirror Node
3637 run : |
37- echo "Waiting for Mirror Node to be ready on http://localhost:5551..."
38- until curl --output /dev/null --silent --head --fail http://localhost:5551/health ; do
38+ echo "Waiting for Mirror Node REST API to be ready on http://localhost:5551..."
39+ until curl --output /dev/null --silent --head --fail http://localhost:5551/api/v1/network/supply ; do
3940 echo "Mirror Node not ready, waiting..."
41+ kubectl get svc -n solo
42+ curl --silent http://localhost:5551/api/v1/network/supply || echo "No response from /api/v1/network/supply"
4043 sleep 5
4144 done
42- echo "Mirror Node is ready!"
45+ echo "Mirror Node REST API is ready!"
4346
4447 - name : Build with Maven
4548 env :
You can’t perform that action at this time.
0 commit comments