Skip to content
Snippets Groups Projects
Commit 22a38260 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch 'fix-celery-issues' into 'master'

Fix celery issues

See merge request funkwhale/funkwhale!563
parents 293e526f 871db159
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")
......
......@@ -21,7 +21,7 @@ pytz==2018.9
# Redis support
django-redis>=4.10,<4.11
redis>=3.0,<3.1
kombu>=4.2.2,<4.3
celery>=4.2,<4.3
......
Fixed celery worker defaulting to development settings instead of production
Upgraded kombu to fix an incompatibility with redis>=3
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