Comment out scheduler.

This commit is contained in:
Stephan Porada 2019-08-28 10:54:48 +02:00
parent 064481d1bd
commit 417a00269d

View File

@ -23,8 +23,8 @@ def create_app(config_name):
db.init_app(app)
login_manager.init_app(app)
mail.init_app(app)
scheduler.init_app(app)
scheduler.start()
# scheduler.init_app(app)
# scheduler.start()
socketio.init_app(app, message_qeue='redis://')
from .auth import auth as auth_blueprint