Increase websocket server limit from 1MB to 10MB to allow for larger datasets like large work schedules.

This commit is contained in:
Dion Moult
2024-09-20 17:03:46 +10:00
parent 8866a34f22
commit bfd5b3c1c7
@@ -21,6 +21,7 @@ sio_port = 8080 # default port
sio = socketio.AsyncServer(
cors_allowed_origins="*",
async_mode="aiohttp",
max_http_buffer_size=10000000
)
app = web.Application()
sio.attach(app)