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.
This commit is contained in:
Sybren A. Stüvel 2018-12-04 10:20:14 +01:00
parent a10b42afe6
commit ac092587af

View File

@ -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