Celery with rabbitmq creates results multiple queues
问题 I have installed Celery with RabbitMQ. Problem is that for every result that is returned, Celery will create in the Rabbit, queue with the task's ID in the exchange celeryresults. I still want to have results, but on ONE queue. my celeryconfig: from datetime import timedelta OKER_URL = 'amqp://' CELERY_RESULT_BACKEND = 'amqp' #CELERY_IGNORE_RESULT = True CELERY_TASK_SERIALIZER = 'json' CELERY_RESULT_SERIALIZER = 'json' CELERY_ACCEPT_CONTENT=['json', 'application/json'] CELERY_TIMEZONE =