Commit 3b09fe9f authored by Kelvin Fichter's avatar Kelvin Fichter

fix(rhc): typo in healthcheck docker-compose

Fixes a typo in the primary docker-compose file. replica-healthcheck
should be replica_healthcheck to conform with the style used everywhere
else.
parent 0645cd7c
...@@ -224,7 +224,7 @@ jobs: ...@@ -224,7 +224,7 @@ jobs:
command: yarn --frozen-lockfile command: yarn --frozen-lockfile
- save_cache: - save_cache:
key: v1-yarn-install-{{ checksum "yarn.lock" }} key: v1-yarn-install-{{ checksum "yarn.lock" }}
paths: paths:
- node_modules - node_modules
- packages/common-ts/node_modules - packages/common-ts/node_modules
- packages/contracts/node_modules - packages/contracts/node_modules
...@@ -362,7 +362,7 @@ jobs: ...@@ -362,7 +362,7 @@ jobs:
name: Bring up the stack name: Bring up the stack
command: | command: |
docker-compose build --progress=plain docker-compose build --progress=plain
docker-compose up -d --scale replica-healthcheck=1 docker-compose up -d --scale replica_healthcheck=1
working_directory: ops working_directory: ops
- run: - run:
name: Wait for sequencer name: Wait for sequencer
......
...@@ -50,7 +50,7 @@ jobs: ...@@ -50,7 +50,7 @@ jobs:
working-directory: ./ops working-directory: ./ops
run: | run: |
./scripts/stats.sh & ./scripts/stats.sh &
docker-compose -f docker-compose.yml up -d --scale replica-healthcheck=1 docker-compose -f docker-compose.yml up -d --scale replica_healthcheck=1
- name: Wait for the Sequencer node - name: Wait for the Sequencer node
working-directory: ./ops working-directory: ./ops
......
...@@ -174,7 +174,7 @@ services: ...@@ -174,7 +174,7 @@ services:
- ${REPLICA_HTTP_PORT:-8549}:8545 - ${REPLICA_HTTP_PORT:-8549}:8545
- ${REPLICA_WS_PORT:-8550}:8546 - ${REPLICA_WS_PORT:-8550}:8546
replica-healthcheck: replica_healthcheck:
depends_on: depends_on:
- l2geth - l2geth
- replica - replica
...@@ -203,7 +203,7 @@ services: ...@@ -203,7 +203,7 @@ services:
environment: environment:
L1_URL: http://l1_chain:8545 L1_URL: http://l1_chain:8545
L2_URL: http://l2geth:8545 L2_URL: http://l2geth:8545
HEALTHCHECK_URL: http://replica-healthcheck:7300/metrics HEALTHCHECK_URL: http://replica_healthcheck:7300/metrics
REPLICA_URL: http://replica:8545 REPLICA_URL: http://replica:8545
VERIFIER_URL: http://verifier:8545 VERIFIER_URL: http://verifier:8545
URL: http://deployer:8081/addresses.json URL: http://deployer:8081/addresses.json
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment