Skip to content
Snippets Groups Projects
Verified Commit 6d8708e4 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add missing dependency in installed_apps

parent dbfa8429
No related branches found
No related tags found
1 merge request!123Resolve "Background Tasks / Task Broker"
......@@ -369,7 +369,7 @@ if _settings.get("2fa.twilio.sid", None):
TWILIO_CALLER_ID = _settings.get("2fa.twilio.callerid")
if _settings.get("celery.enabled", False):
INSTALLED_APPS += ("django_celery_beat",)
INSTALLED_APPS += ("django_celery_beat", "django_celery_results")
CELERY_RESULT_BACKEND = "django-db"
CELERY_CACHE_BACKEND = "django-cache"
CELERY_BEAT_SCHEDULER = "django_celery_beat.schedulers:DatabaseScheduler"
......
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