From 80a65c69b78ddbc809d3477fb36242eb7fe95b71 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 3 Oct 2014 01:55:33 -0400 Subject: [PATCH] Update Celery process to use the production settings by default --- mayan/celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/celery.py b/mayan/celery.py index dbca81be31..02144336b5 100644 --- a/mayan/celery.py +++ b/mayan/celery.py @@ -6,7 +6,7 @@ import django from celery import Celery from django.conf import settings -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mayan.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mayan.settings.production') app = Celery('mayan')