security(status_page): remove hardcoded ClickHouse password fallback
Some checks failed
CI / build (push) Failing after 2s
Some checks failed
CI / build (push) Failing after 2s
This commit is contained in:
parent
f932ac4e1e
commit
b2cdfce4cd
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ def check_clickhouse() -> dict[str, Any]:
|
|||
try:
|
||||
ch_host = os.getenv("CH_HOST", "langfuse-clickhouse-1")
|
||||
ch_user = os.getenv("CH_USER", "clickhouse")
|
||||
ch_password = os.getenv("CH_PASSWORD", "REDACTED")
|
||||
ch_password = os.getenv("CH_PASSWORD", "change-me-in-env")
|
||||
|
||||
client = clickhouse_connect.get_client(
|
||||
host=ch_host,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue