do not exit on uncaught exception

This commit is contained in:
Roman Shtylman
2017-12-11 21:35:40 -08:00
parent 3d6798a2bf
commit 2a9bc27117

View File

@@ -47,7 +47,6 @@ process.on('SIGTERM', () => {
process.on('uncaughtException', (err) => { process.on('uncaughtException', (err) => {
log.error(err); log.error(err);
process.exit(1);
}); });
process.on('unhandledRejection', (reason, promise) => { process.on('unhandledRejection', (reason, promise) => {