Skip to content

Commit 27edb3e

Browse files
Merge pull request #26 from glassflow/feat/support-clickhouse-skip-cert-verification
add skip_certificate_verification sink parameter
2 parents 881af18 + a916422 commit 27edb3e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.8
1+
0.2.9

src/glassflow_clickhouse_etl/models/sink.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class SinkConfig(BaseModel):
2626
username: str
2727
password: str
2828
secure: bool = Field(default=False)
29+
skip_certificate_verification: bool = Field(default=False)
2930
max_batch_size: int = Field(default=1000)
3031
max_delay_time: str = Field(default="10m")
3132
table: str

0 commit comments

Comments
 (0)