I need to be able to publish to a durable topic exchange but at the moment this seems to be disallowed as per
PubSocket.prototype.connect = function(destination, callback) {
var self = this, ch = this.ch;
ch.assertExchange(destination,
this.options.routing || 'fanout',
{durable: false, autoDelete: false})
.then(function(ok) {
self.pubs.push(destination);
}).then(callback);
};
When I connect to RabbitMQ I get the following error
Channel closed by server: 406 (PRECONDITION-FAILED) with message
"PRECONDITION_FAILED - cannot redeclare exchange 'ExchangeName'
in vhost '/' with different type, durable, internal or autodelete value"
It would be great if it were possible to do the following:
var pub = context.socket('PUBLISH', {routing: 'topic', persistent: true});
pub.connect(exchange);
I ended up updating the assertExchange code above to set durable to true but I'm not sure what the wider implications are of doing so.
I'm happy to submit a pull request if this is a feasible option.
I need to be able to publish to a durable topic exchange but at the moment this seems to be disallowed as per
When I connect to RabbitMQ I get the following error
It would be great if it were possible to do the following:
I ended up updating the
assertExchangecode above to setdurabletotruebut I'm not sure what the wider implications are of doing so.I'm happy to submit a pull request if this is a feasible option.