Use correct settings for celery
This commit is contained in:
parent
0962891a9b
commit
5db97f03d1
1 changed files with 4 additions and 4 deletions
|
@ -6,15 +6,15 @@ from celery import Celery
|
|||
|
||||
from django.conf import settings
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
|
||||
'gnuviechadmin.settings.production')
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gnuviechadmin.settings")
|
||||
|
||||
|
||||
app = Celery('gnuviechadmin')
|
||||
app = Celery("gnuviechadmin")
|
||||
|
||||
|
||||
def get_installed_apps():
|
||||
return settings.INSTALLED_APPS
|
||||
|
||||
app.config_from_object('django.conf:settings')
|
||||
|
||||
app.config_from_object("django.conf:settings")
|
||||
app.autodiscover_tasks(get_installed_apps)
|
||||
|
|
Loading…
Reference in a new issue