We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a13e7 commit b98c823Copy full SHA for b98c823
javascript-nodejs/src/emit_log.js
@@ -7,7 +7,7 @@ amqp.connect('amqp://localhost', function(err, conn) {
7
var ex = 'logs';
8
var msg = process.argv.slice(2).join(' ') || 'Hello World!';
9
10
- ch.assertExchange(ex, 'fanout', {durable: false})
+ ch.assertExchange(ex, 'fanout', {durable: false});
11
ch.publish(ex, '', new Buffer(msg));
12
console.log(" [x] Sent %s", msg);
13
});
0 commit comments