Skip to content

Commit 2728848

Browse files
committed
Disable SSL verification for CloudFetch links
Signed-off-by: Levko Kravets <levko.ne@gmail.com>
1 parent 134b21d commit 2728848

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/databricks/sql/cloudfetch/downloader.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ def run(self) -> DownloadedFile:
9595
try:
9696
# Get the file via HTTP request
9797
response = session.get(
98-
self.link.fileLink, timeout=self.settings.download_timeout
98+
self.link.fileLink,
99+
timeout=self.settings.download_timeout,
100+
verify=False,
99101
)
100102
response.raise_for_status()
101103

0 commit comments

Comments
 (0)