Skip to content

Commit 2abfc1e

Browse files
committed
Increase to 50 MB, we are getting message too big error and request stalled see HEA-752
1 parent 8fb5f62 commit 2abfc1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/common/consumers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def connect(self):
6060
try:
6161
self.websocket = await websockets.connect(
6262
target_url,
63-
max_size=10485760,
63+
max_size=52428800, # Increase to 50 MB
6464
ping_interval=20,
6565
open_timeout=30, # Default is 10 sec
6666
subprotocols=subprotocols if subprotocols else None,

0 commit comments

Comments
 (0)