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 am trying to use bus.subscribe('', func...), I am wondering how i can assign the exchange name ? i tried it on the bus creation in the options params, but nothing seems to work
any idea?
The text was updated successfully, but these errors were encountered:
This is probably a bug, in that it is defaulting to 'amq.topic' whenever subscribe options don't have the exchangeName provided. A better solution would probably be for me to assign this.exchangeName = options.exchangeName || options.bus.exchangeName; in pubsubqueue.js.
If you don't mind the syntax (temporarily, at least) you should be able to do something like the following to set the exchange in the internal pubsubqueue:
I am trying to use bus.subscribe('', func...), I am wondering how i can assign the exchange name ? i tried it on the bus creation in the
options
params, but nothing seems to workany idea?
The text was updated successfully, but these errors were encountered: