Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
Merge pull request #172 from nova-zl504/master
Browse files Browse the repository at this point in the history
Add "durable: false" option to AMQPLibAscoltatore
  • Loading branch information
mcollina authored Apr 1, 2017
2 parents e9a639d + a603ba8 commit ceff408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/amqplib_ascoltatore.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ AMQPLibAscoltatore.prototype._startConn = function () {
function(callback){
debug('channel created');
that._queue = util.buildIdentifier();
that._channel.assertQueue(that._queue, null, wrap(callback));
that._channel.assertQueue(that._queue, {durable: false}, wrap(callback));
},

function (callback){
Expand Down

0 comments on commit ceff408

Please sign in to comment.