Remove async_mode to use auto-detection

parent dbb9a3c8
......@@ -56,7 +56,7 @@ db = SQLAlchemy(app)
login_manager = LoginManager()
login_manager.init_app(app)
login_manager.login_view = 'login'
socketio = SocketIO(app, async_mode='threading')
socketio = SocketIO(app)
class User(UserMixin, db.Model):
id = db.Column(db.Integer, primary_key=True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment