Skip to content

Commit

Permalink
feat: Add SSL/TLS support for ClickHouse connections
Browse files Browse the repository at this point in the history
  • Loading branch information
patsevanton committed Nov 20, 2024
1 parent edec438 commit 53a73be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test_distributed_migrations/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ def pytest_configure() -> None:
distributed_cluster_name=cluster_node["distributed_cluster_name"]
if "distributed_cluster_name" in cluster_node
else None,
secure=cluster_node.get("secure", False),
ca_certs=cluster_node.get("ca_certs", None),
verify=cluster_node.get("verify", False),
)

database_name = cluster_node["database"]
Expand Down

0 comments on commit 53a73be

Please sign in to comment.