Merge pull request #48 from DaanSelen/increase_limit

Increase limit
This commit is contained in:
Josiah Baldwin
2025-06-24 13:48:43 -07:00
committed by GitHub

View File

@@ -144,7 +144,7 @@ class Session(object):
options["additional_headers"] = headers
async for websocket in websockets.asyncio.client.connect(self.url, proxy=self._proxy, process_exception=util._process_websocket_exception, **options):
async for websocket in websockets.asyncio.client.connect(self.url, proxy=self._proxy, process_exception=util._process_websocket_exception, max_size=None, **options):
self.alive = True
self._socket_open.set()
try: