security(status_page): remove hardcoded ClickHouse password fallback
Some checks failed
CI / build (push) Failing after 2s

This commit is contained in:
Crypto Rug Munch 2026-07-02 22:37:41 +02:00
parent f932ac4e1e
commit b2cdfce4cd

View file

@ -120,7 +120,7 @@ def check_clickhouse() -> dict[str, Any]:
try: try:
ch_host = os.getenv("CH_HOST", "langfuse-clickhouse-1") ch_host = os.getenv("CH_HOST", "langfuse-clickhouse-1")
ch_user = os.getenv("CH_USER", "clickhouse") 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( client = clickhouse_connect.get_client(
host=ch_host, host=ch_host,