Skip to content

Commit

Permalink
Websocket SSL is verified by default
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jul 16, 2024
1 parent 90c3def commit 07baba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async def _backoff_connect(
proxy = None
for delay in backoff:
try:
async with session.ws_connect(ws_url, ssl=True, proxy=proxy) as websocket:
async with session.ws_connect(ws_url, proxy=proxy) as websocket:
yield websocket
backoff.reset()
except (
Expand Down

0 comments on commit 07baba3

Please sign in to comment.