Celery tasks registering in multiple queues
问题 I am using celery in Django (1.9) with RabbitMQ server. I have four different queues and I am registering a task in one of these four queues. The issue is all my tasks are registered in all four queue. Like I have a task named add and have four queues A, B, C and D. Ideally task should be registered in only A queue (As I registered) But It is showing in all four queues. could not rectify what is the actual issue. Please help. 来源: https://stackoverflow.com/questions/50203203/celery-tasks