Skip to content

Commit

Permalink
Disable SSL fix
Browse files Browse the repository at this point in the history
  • Loading branch information
the-laziest-coder committed Feb 18, 2024
1 parent d62b907 commit 048c317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tls/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def request(self, method, url, acceptable_statuses=None, resp_handler=None
if 'timeout' not in kwargs:
kwargs.update({'timeout': 60})
if DISABLE_SSL:
kwargs.update({'ssl': False})
kwargs.update({'verify': False})
resp = await self._raw_request(method, url, headers, **kwargs)
return self._handle_response(resp, acceptable_statuses, resp_handler, with_text)

Expand Down

0 comments on commit 048c317

Please sign in to comment.