8000 missing semicolon · syk-coder/rabbitmq-tutorials@b98c823 · GitHub
[go: up one dir, main page]

Skip to content

Commit b98c823

Browse files
committed
missing semicolon
1 parent 99a13e7 commit b98c823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript-nodejs/src/emit_log.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ amqp.connect('amqp://localhost', function(err, conn) {
77
var ex = 'logs';
88
var msg = process.argv.slice(2).join(' ') || 'Hello World!';
99

10-
ch.assertExchange(ex, 'fanout', {durable: false})
10+
ch.assertExchange(ex, 'fanout', {durable: false});
1111
ch.publish(ex, '', new Buffer(msg));
1212
console.log(" [x] Sent %s", msg);
1313
});

0 commit comments

Comments
 (0)
0