Skip to content

Commit

Permalink
Disable SSL verification for CloudFetch links
Browse files Browse the repository at this point in the history
Signed-off-by: Levko Kravets <[email protected]>
  • Loading branch information
kravets-levko committed Jul 11, 2024
1 parent 134b21d commit 2728848
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/databricks/sql/cloudfetch/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ def run(self) -> DownloadedFile:
try:
# Get the file via HTTP request
response = session.get(
self.link.fileLink, timeout=self.settings.download_timeout
self.link.fileLink,
timeout=self.settings.download_timeout,
verify=False,
)
response.raise_for_status()

Expand Down

0 comments on commit 2728848

Please sign in to comment.