From ac092587af1aa6c2090365cb0c76a0f95a99be24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 4 Dec 2018 10:20:14 +0100 Subject: [PATCH] Switch Celery broker from RabbitMQ to Redis This should work around a bug in Celery where long Celery tasks would time out and be re-queued, causing an infinite loop. See https://github.com/celery/celery/issues/3430 for more info. --- pillar/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/config.py b/pillar/config.py index 62b63be2..a428c22d 100644 --- a/pillar/config.py +++ b/pillar/config.py @@ -195,7 +195,7 @@ BLENDER_CLOUD_ADDON_VERSION = '1.4' TLS_CERT_FILE = requests.certs.where() CELERY_BACKEND = 'redis://redis/1' -CELERY_BROKER = 'amqp://guest:guest@rabbit//' +CELERY_BROKER = 'redis://redis/2' # This configures the Celery task scheduler in such a way that we don't # have to import the pillar.celery.XXX modules. Remember to run