Skip to content

Commit 4fecf78

Browse files
meteoFurletovclaude
authored andcommitted
Add secure field to ClickHouse connection config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Nikita Furletov <meteofurletov@gmail.com>
1 parent 44b51c8 commit 4fecf78

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

sqlmesh/core/config/connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2100,6 +2100,7 @@ class ClickhouseConnectionConfig(ConnectionConfig):
21002100
https_proxy: t.Optional[str] = None
21012101
server_host_name: t.Optional[str] = None
21022102
tls_mode: t.Optional[str] = None
2103+
secure: bool = False
21032104

21042105
concurrent_tasks: int = 1
21052106
register_comments: bool = True
@@ -2136,6 +2137,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]:
21362137
"https_proxy",
21372138
"server_host_name",
21382139
"tls_mode",
2140+
"secure",
21392141
}
21402142
return kwargs
21412143

0 commit comments

Comments
 (0)