mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 18:06:14 +03:00
catch rejection error globally
This commit is contained in:
parent
316db89b9a
commit
7a32e5e6ff
1 changed files with 6 additions and 0 deletions
|
@ -826,3 +826,9 @@ gracefulShutdown(server, {
|
||||||
onShutdown: shutdownFunction, // shutdown function (async) - e.g. for cleanup DB, ...
|
onShutdown: shutdownFunction, // shutdown function (async) - e.g. for cleanup DB, ...
|
||||||
finally: finalFunction, // finally function (sync) - e.g. for logging
|
finally: finalFunction, // finally function (sync) - e.g. for logging
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Catch unexpected errors here
|
||||||
|
process.addListener("unhandledRejection", (error, promise) => {
|
||||||
|
console.trace(error);
|
||||||
|
console.error("If you keep encountering errors, please report to https://github.com/louislam/uptime-kuma/issues");
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in a new issue