From afc6d9e7a42992c61df86fdf5e28715488edc851 Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Thu, 12 May 2022 18:37:05 -0400 Subject: [PATCH] Update boot check --- .github/workflows/on-pr.yml | 2 +- entrypoint.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index 75a38d7..95716e7 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -25,7 +25,7 @@ on: - "**" env: - stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref || '21d076268730e3f25fcec6371c1aca1bf48040d8'}} + stack-orchestrator-ref: ${{ github.event.inputs.stack-orchestrator-ref || '026ae987327dda66e733463d960c17ff5f8eed9d'}} ipld-eth-db-ref: ${{ github.event.inputs.ipld-eth-db-ref || 'minimal-beacon-chain-schema' }} ssz-data-ref: ${{ github.event.inputs.ssz-data-ref || 'main' }} GOPATH: /tmp/go diff --git a/entrypoint.sh b/entrypoint.sh index c9923e3..20f872f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,7 +11,8 @@ echo /root/ipld-ethcl-indexer capture ${CAPTURE_MODE} --db.address $DB_ADDRESS \ --db.driver $DB_DRIVER \ --bc.address $BC_ADDRESS \ --bc.port $BC_PORT \ - --log.level $LOG_LEVEL + --log.level $LOG_LEVEL\ + --t.skipSync=$SKIP_SYNC /root/ipld-ethcl-indexer capture ${CAPTURE_MODE} --db.address $DB_ADDRESS \ --db.password $DB_PASSWORD \ @@ -21,7 +22,8 @@ echo /root/ipld-ethcl-indexer capture ${CAPTURE_MODE} --db.address $DB_ADDRESS \ --db.driver $DB_DRIVER \ --bc.address $BC_ADDRESS \ --bc.port $BC_PORT \ - --log.level $LOG_LEVEL + --log.level $LOG_LEVEL \ + --t.skipSync=$SKIP_SYNC rv=$?