Fixed last api changes
This commit is contained in:
parent
c71b1092f2
commit
a9d180fdf1
@ -54,9 +54,9 @@ class Api(Flask):
|
||||
|
||||
# websockets
|
||||
# Added async_mode see link below
|
||||
# https://stackoverflow.com/questions/39370848/flask-socket-io-sometimes-client-calls-freeze-the-server
|
||||
# https://github.com/miguelgrinberg/Flask-SocketIO/discussions/1849
|
||||
self._socketio = SocketIO(self, cors_allowed_origins="*", path="/api/socket.io", async_mode="threading")
|
||||
# https://stackoverflow.com/questions/39370848/flask-socket-io-sometimes-client-calls-freeze-the-server
|
||||
self._socketio = SocketIO(self, cors_allowed_origins="*", path="/api/socket.io", async_mode="eventlet")
|
||||
self._socketio.on_event("connect", self.on_connect)
|
||||
self._socketio.on_event("disconnect", self.on_disconnect)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user