diff --git a/conf.d/celeryconfig.py b/conf.d/celeryconfig.py index b453cf4..d042a71 100644 --- a/conf.d/celeryconfig.py +++ b/conf.d/celeryconfig.py @@ -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'))