Skip to content
Snippets Groups Projects
Verified Commit 37ca06c3 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fixed celery worker defaulting to development settings instead of production

parent 293e526f
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ logger = logging.getLogger("celery")
if not settings.configured:
# set the default Django settings module for the 'celery' program.
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "config.settings.local"
"DJANGO_SETTINGS_MODULE", "config.settings.production"
) # pragma: no cover
app = celery.Celery("funkwhale_api")
......
Fixed celery worker defaulting to development settings instead of production
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment