mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 02:07:36 +00:00
Increase websocket server limit from 1MB to 10MB to allow for larger datasets like large work schedules.
This commit is contained in:
@@ -21,6 +21,7 @@ sio_port = 8080 # default port
|
|||||||
sio = socketio.AsyncServer(
|
sio = socketio.AsyncServer(
|
||||||
cors_allowed_origins="*",
|
cors_allowed_origins="*",
|
||||||
async_mode="aiohttp",
|
async_mode="aiohttp",
|
||||||
|
max_http_buffer_size=10000000
|
||||||
)
|
)
|
||||||
app = web.Application()
|
app = web.Application()
|
||||||
sio.attach(app)
|
sio.attach(app)
|
||||||
|
|||||||
Reference in New Issue
Block a user