mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
cleanup code
This commit is contained in:
parent
4a9690437f
commit
6bce270f42
3087
package-lock.json
generated
3087
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -17,7 +17,7 @@ const args = require("args-parser")(process.argv);
|
|||
const prometheusAPIMetrics = require("prometheus-api-metrics");
|
||||
const { basicAuth } = require("./auth");
|
||||
const { login } = require("./auth");
|
||||
const passwordHash = require('./password-hash');
|
||||
const passwordHash = require("./password-hash");
|
||||
const version = require("../package.json").version;
|
||||
const hostname = args.host || "0.0.0.0"
|
||||
const port = args.port || 3001
|
||||
|
@ -708,26 +708,8 @@ async function sendImportantHeartbeatList(socket, monitorID) {
|
|||
socket.emit("importantHeartbeatList", monitorID, list)
|
||||
}
|
||||
|
||||
const startGracefulShutdown = async () => {
|
||||
console.log("Shutdown requested");
|
||||
|
||||
await (new Promise((resolve) => {
|
||||
server.close(async function () {
|
||||
console.log("Stopped Express.");
|
||||
process.exit(0)
|
||||
setTimeout(async () => {
|
||||
await R.close();
|
||||
console.log("Stopped DB")
|
||||
|
||||
resolve();
|
||||
}, 5000)
|
||||
|
||||
});
|
||||
}));
|
||||
|
||||
}
|
||||
|
||||
async function shutdownFunction(signal) {
|
||||
console.log("Shutdown requested");
|
||||
console.log("Called signal: " + signal);
|
||||
|
||||
console.log("Stopping all monitors")
|
||||
|
@ -737,10 +719,11 @@ async function shutdownFunction(signal) {
|
|||
}
|
||||
await sleep(2000);
|
||||
await Database.close();
|
||||
console.log("Stopped DB")
|
||||
}
|
||||
|
||||
function finalFunction() {
|
||||
console.log("Graceful Shutdown")
|
||||
console.log("Graceful Shutdown Done")
|
||||
}
|
||||
|
||||
gracefulShutdown(server, {
|
||||
|
|
Loading…
Reference in a new issue