You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from what i can tell in the source code, the delay shouldn't be used since unless delay was passed in. so can you help me understand why the .DQ queue is being used?
The text was updated successfully, but these errors were encountered:
can you help me understand how dramatiq uses delayed queues for RabbitMQ ? when i call
declare_queue('my_queue')
i see that it is also creatingmy_queue.DQ
https://github.com/Bogdanp/dramatiq/blob/master/dramatiq/brokers/rabbitmq.py#L241i have a task that im submitting without any delay, and yet i still see the
.DQ
in use when i look at my local RMQ instance.here's a contrived example of how i'm configuring the broker & task
from what i can tell in the source code, the delay shouldn't be used since unless delay was passed in. so can you help me understand why the
.DQ
queue is being used?The text was updated successfully, but these errors were encountered: