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 ab40de9 commit 2167c26Copy full SHA for 2167c26
src/taskmaster.ts
@@ -42,10 +42,11 @@ amqp.connect(`amqp://${config.AMQP.USER}:${config.AMQP.PASS}@${config.AMQP.HOST}
42
43
// TODO
44
channel.sendToQueue(successQ, (new Buffer(JSON.stringify(jobResult))))
45
- channel.ack(msg)
+
46
} catch (err) {
47
Raven.captureException(err);
48
}
49
+ channel.ack(msg)
50
})
51
52
0 commit comments