Fixes in mongodb and chatwoot

This commit is contained in:
Davidson Gomes
2023-12-06 15:21:50 -03:00
parent 4c69b059d4
commit a90f0f2c59
7 changed files with 197 additions and 179 deletions

View File

@@ -8,7 +8,7 @@ export function onUnexpectedError() {
stderr: process.stderr.fd,
error,
});
process.exit(1);
// process.exit(1);
});
process.on('unhandledRejection', (error, origin) => {
@@ -18,6 +18,6 @@ export function onUnexpectedError() {
stderr: process.stderr.fd,
error,
});
process.exit(1);
// process.exit(1);
});
}