File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ async def _establish_new_connection(
170170
171171 try :
172172 uri_and_metadata = await self ._uri_and_metadata_factory ()
173- ws = await websockets .connect (uri_and_metadata ["uri" ])
173+ ws = await websockets .connect (uri_and_metadata ["uri" ], max_size = None )
174174 session_id = (
175175 self .generate_nanoid ()
176176 if not old_session
Original file line number Diff line number Diff line change @@ -1084,7 +1084,7 @@ async def _do_ensure_connected[HandshakeMetadata](
10841084 ws : ClientConnection | None = None
10851085 try :
10861086 uri_and_metadata = await uri_and_metadata_factory ()
1087- ws = await websockets .asyncio .client .connect (uri_and_metadata ["uri" ])
1087+ ws = await websockets .asyncio .client .connect (uri_and_metadata ["uri" ], max_size = None )
10881088 transition_connecting (ws )
10891089
10901090 try :
You can’t perform that action at this time.
0 commit comments