Set async mode in web api #290
This commit is contained in:
		@@ -53,7 +53,9 @@ class Api(Flask):
 | 
			
		||||
        self.register_error_handler(exc_class, self.handle_exception)
 | 
			
		||||
 | 
			
		||||
        # websockets
 | 
			
		||||
        self._socketio = SocketIO(self, cors_allowed_origins="*", path="/api/socket.io")
 | 
			
		||||
        # Added async_mode see link below
 | 
			
		||||
        # 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)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user