From 117db78983d9001e67e5823dc84b69b4aef5444e Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 17 Mar 2022 09:57:25 -0700 Subject: [PATCH] Adds auto-create queues option to config --- celerywyrm/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/celerywyrm/settings.py b/celerywyrm/settings.py index 35eb3933f..94e530221 100644 --- a/celerywyrm/settings.py +++ b/celerywyrm/settings.py @@ -13,6 +13,7 @@ CELERY_BROKER_URL = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDI CELERY_RESULT_BACKEND = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDIS_BROKER_PORT}/{REDIS_BROKER_DB_INDEX}" CELERY_DEFAULT_QUEUE = "low_priority" +CELERY_CREATE_MISSING_QUEUES = True CELERY_ACCEPT_CONTENT = ["json"] CELERY_TASK_SERIALIZER = "json"