Skip to content

Commit

Permalink
restore process exit behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
tunderdomb committed Aug 1, 2022
1 parent 532cbcf commit 7f2db06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueueConnection.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class QueueConnection {
})
conn.on('close', () => {
this._logger.error('RabbitMQ closed')
// process.exit(2)
process.exit(2)
})
conn.on('blocked', (reason) => {
this._logger.error('RabbitMQ blocked', reason)
Expand Down

0 comments on commit 7f2db06

Please sign in to comment.