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
I tried to create an unique queue for my process and make a handler only for this queue as I have many queues in the system.
Am I missing something or API just doesn't provide this?
Calling addQueue with 'MyQueueName', {exclusive: true, unique: 'id', subscribe: true}
Calling bindQueue with my exchange, and 'MyQueueName' still binds the queue fine
Now I want to create my handler for this unique queue and handle called with {queue 'MyQueueName'} isn't getting any messsages for that queue. From what I investigated I would need to call it with {queue: 'UNIQUEID-MyQueueName'} but there is no API to get generated, unique queue name or id.
The text was updated successfully, but these errors were encountered:
I tried to create an unique queue for my process and make a handler only for this queue as I have many queues in the system.
Am I missing something or API just doesn't provide this?
Now I want to create my handler for this unique queue and handle called with {queue 'MyQueueName'} isn't getting any messsages for that queue. From what I investigated I would need to call it with {queue: 'UNIQUEID-MyQueueName'} but there is no API to get generated, unique queue name or id.
The text was updated successfully, but these errors were encountered: