fix celery settings

This commit is contained in:
Jan Koppe 2020-04-20 18:56:12 +02:00
parent 59fa9df2ad
commit f97202869c
Signed by: thunfisch
GPG Key ID: BE935B0735A2129B
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings')
app = Celery('proj')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'portier.settings')
app = Celery('portier')
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks()