Update celeryconfig.py

This commit is contained in:
zzpwelkin
2013-12-27 18:03:10 +08:00
parent 9415e8b723
commit f1b72f8139
+1 -1
View File
@@ -6,6 +6,6 @@ CELERY_RESULT_DBURI = os.environ.get('OPENSHIFT_MONGODB_DB_URL')
celery_imports = os.environ.get('OPENSHIFT_CELERY_IMPORTS')
CELERY_IMPORTS = celery_import.split(',') if celery_imports else ('celerytks',)
CELERY_IMPORTS = celery_imports.split(',') if celery_imports else ('celerytks',)
CELERYD_LOG_FILE = '{0}log/celery/worker1.log'.format(os.environ.get('OPENSHIFT_TMP_DIR'))