From f871ecb4256618aab04b77571c7c7a59f30de479 Mon Sep 17 00:00:00 2001 From: Adarnof Date: Sun, 7 Jan 2018 19:50:34 -0500 Subject: [PATCH] Namespace celery settings to correct broker issues --- allianceauth/project_template/project_name/celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/project_template/project_name/celery.py b/allianceauth/project_template/project_name/celery.py index dc9b4d39..26dcc78c 100644 --- a/allianceauth/project_template/project_name/celery.py +++ b/allianceauth/project_template/project_name/celery.py @@ -10,7 +10,7 @@ app = Celery('{{ project_name }}') # Using a string here means the worker don't have to serialize # the configuration object to child processes. -app.config_from_object('django.conf:settings') +app.config_from_object('django.conf:settings', namespace='CELERY') # Load task modules from all registered Django app configs. app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)