Skip to content

Commit

Permalink
chore: fix warehouse integration tests (#4806)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir20 committed Jun 13, 2024
1 parent 4565b1f commit cb26a0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
depends_on:
- zookeeper
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:8123/ping || exit 1
interval: 1s
retries: 25
clickhouse02:
Expand All @@ -28,7 +28,7 @@ services:
depends_on:
- zookeeper
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:8123/ping || exit 1
interval: 1s
retries: 25
clickhouse03:
Expand All @@ -40,7 +40,7 @@ services:
depends_on:
- zookeeper
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:8123/ping || exit 1
interval: 1s
retries: 25
clickhouse04:
Expand All @@ -52,6 +52,6 @@ services:
depends_on:
- zookeeper
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:8123/ping || exit 1
interval: 1s
retries: 25
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ services:
ports:
- "9000"
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1
test: wget --no-verbose --tries=1 --spider http://0.0.0.0:8123/ping || exit 1
interval: 1s
retries: 25
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- AZURITE_ACCOUNTS=MYACCESSKEY:TVlTRUNSRVRLRVk=
- DefaultEndpointsProtocol=http
healthcheck:
test: nc -z localhost 10000 || exit 1
test: nc -z 0.0.0.0 10000 || exit 1
interval: 1s
retries: 25

Expand Down

0 comments on commit cb26a0b

Please sign in to comment.