Browse Source

Update default celery setting to production

pull/1827/head
Hironsan 2 years ago
parent
commit
ed15643209
1 changed files with 1 additions and 1 deletions
  1. 2
      backend/config/celery.py

2
backend/config/celery.py

@ -2,7 +2,7 @@ import os
from celery import Celery
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.development")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")
app = Celery("config")

Loading…
Cancel
Save