From f56252b0cc5e16322ec98042c3105edc3fa1c23d Mon Sep 17 00:00:00 2001 From: Basraah Date: Sat, 6 Jan 2018 12:16:30 +1000 Subject: [PATCH] Fix celery broker url config --- allianceauth/project_template/project_name/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/project_template/project_name/settings/base.py b/allianceauth/project_template/project_name/settings/base.py index 630121d8..8cf40457 100644 --- a/allianceauth/project_template/project_name/settings/base.py +++ b/allianceauth/project_template/project_name/settings/base.py @@ -39,7 +39,7 @@ INSTALLED_APPS = [ ] # Celery configuration -BROKER_URL = 'redis://localhost:6379/0' +CELERY_BROKER_URL = 'redis://localhost:6379/0' CELERYBEAT_SCHEDULER = "django_celery_beat.schedulers.DatabaseScheduler" CELERYBEAT_SCHEDULE = { 'esi_cleanup_callbackredirect': {