Sometimes we want to bind to an exact queue name without using the namespace.
For example, for most of our consumers we want to use the application name as a prefix to help group queues. However, we have a global 'deadletter' queue which we do not want to namespace, but connect to verbatim.
This PR allows exact: true to be added when setting the queue_name in a consumer.
Sometimes we want to bind to an exact queue name without using the namespace.
For example, for most of our consumers we want to use the application name as a prefix to help group queues. However, we have a global 'deadletter' queue which we do not want to namespace, but connect to verbatim.
This PR allows
exact: true
to be added when setting the queue_name in a consumer.