Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/sockets.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ function SubSocket(channel, opts) {
var self = this;

var setup = channel.then(function(ch) {
return ch.assertQueue('', {
exclusive: true, autoDelete: true
return ch.assertQueue(self.options.queue || '', {
exclusive: (self.options.queue?false:true), autoDelete: true
}).then(function(ok) {
self.queue = ok.queue; // for inspection
return ch.consume(ok.queue, function(msg) {
Expand Down