Skip to content

Commit

Permalink
fix verify and secure settings
Browse files Browse the repository at this point in the history
These were always true effectively
  • Loading branch information
frankh committed May 25, 2023
1 parent 11612d9 commit 85fdf9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions housewatch/clickhouse/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from housewatch.clickhouse.queries.sql import EXISTING_TABLES_SQL

ch_host = os.getenv("CLICKHOUSE_HOST", "localhost")
ch_verify = os.getenv("CLICKHOUSE_VERIFY", True)
ch_verify = os.getenv("CLICKHOUSE_VERIFY", "true") == "true"
ch_ca = os.getenv("CLICKHOUSE_CA", None)
ch_secure = os.getenv("CLICKHOUSE_SECURE", True)
ch_secure = os.getenv("CLICKHOUSE_SECURE", "true") == "true"

pool = ChPool(
host=ch_host,
Expand Down

0 comments on commit 85fdf9f

Please sign in to comment.