We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f444fa0 commit 0692ad4Copy full SHA for 0692ad4
app/eventyay/config/settings.py
@@ -816,10 +816,10 @@ def instance_name(request):
816
)
817
CELERY_BEAT_SCHEDULER = 'django_celery_beat.schedulers:DatabaseScheduler'
818
CELERY_TASK_TRACK_STARTED = True
819
-CELERY_TASK_ROUTES = [
820
- ('eventyay.base.services.notifications.*', {'queue': 'notifications'}),
821
- ('eventyay.api.webhooks.*', {'queue': 'notifications'}),
822
-]
+CELERY_TASK_ROUTES = {
+ 'eventyay.base.services.notifications.*': {'queue': 'notifications'},
+ 'eventyay.api.webhooks.*': {'queue': 'notifications'},
+}
823
824
825
# Static files (CSS, JavaScript, Images)
0 commit comments