Disable SSL verification

This commit is contained in:
Advik 2023-10-24 16:05:05 +05:30
parent 17a4f4626b
commit 784f0ff93f
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -641,6 +641,7 @@ class CdnManager:
response = self.__session.client().get(
self.__cdn_url.url,
headers={"Range": f"bytes={range_start}-{range_end}"},
verify=False,
)
if response.status_code != 206:
raise IOError(response.status_code)