Open rshom opened 3 years ago
The script as it is now does not fully close. A thread named WebSocketManager is still running. I found that adding the command websocket_server.server_close() before websocket_server.shutdown() solves this issue.
WebSocketManager
websocket_server.server_close()
websocket_server.shutdown()
The script as it is now does not fully close. A thread named
WebSocketManager
is still running. I found that adding the commandwebsocket_server.server_close()
beforewebsocket_server.shutdown()
solves this issue.