Opegbemi Ayodele Jacob
Opegbemi Ayodele Jacob
Hello, I was experiencing a similar issue to this and doing the following fixed it for me In `ml-remote-server/server.py` Try changing: `sio = socketio.AsyncServer()` to `sio = socketio.AsyncServer(always_connect=True,ping_timeout=180,max_http_buffer_size=5e8)` Hope this...
You are right. After extensive testing, I found it only boosted the size without disconnecting to a maximum of 4 - 5 times. But I feel a solution may be...
@reidsanders, I tried approaching the problem from another angle and it seems to work. Rather than looking for a way to prevent it from disconnecting, I implemented a custom reconnect...