-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(clickhouse): Use correct HTTP port for healthcheck (#1069)
Should fix #1058
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -206,7 +206,7 @@ services: | |
test: | ||
[ | ||
"CMD-SHELL", | ||
"wget -nv -t1 --spider 'http://localhost:9000/' || exit 1", | ||
"wget -nv -t1 --spider 'http://localhost:8123/' || exit 1", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
pharindoko
Contributor
|
||
] | ||
interval: 3s | ||
timeout: 600s | ||
|
Hey @BYK
snuba will use port 9000 (clickhouse itself). This worked for me perfectly - I assumed at least.
Why you are now waiting for the clickhouse ui being ready ?
br,
pharindoko