changeset 8797:488a1fa637a0

celery: fix CELERY_APP creation after breakage in ea1c608efa3a A part of change still under development had sneaked in.
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 07 Nov 2020 18:49:57 +0100
parents bcd18ce5de66
children aa8680af29c2
files kallithea/config/app_cfg.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/config/app_cfg.py	Sun Dec 20 22:43:30 2020 +0100
+++ b/kallithea/config/app_cfg.py	Sat Nov 07 18:49:57 2020 +0100
@@ -136,7 +136,7 @@
     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'])