# HG changeset patch # User Mads Kiilerich # Date 2020-11-07 18:49:57 # Node ID 488a1fa637a0b747e80e9b5643d4ad58dd3c240e # Parent bcd18ce5de66636c0f349ca1e4af92d2eb5126b4 celery: fix CELERY_APP creation after breakage in ea1c608efa3a A part of change still under development had sneaked in. diff --git a/kallithea/config/app_cfg.py b/kallithea/config/app_cfg.py --- a/kallithea/config/app_cfg.py +++ b/kallithea/config/app_cfg.py @@ -136,7 +136,7 @@ def setup_configuration(app): kallithea.DEFAULT_USER_ID = db.User.get_default_user().user_id if asbool(config.get('use_celery')): - kallithea.CELERY_APP = celery_app.make_celery_app() + kallithea.CELERY_APP = celery_app.make_app() kallithea.CONFIG = config load_extensions(root_path=config['here'])