mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-11-06 23:46:13 +08:00
Avoid Uptime Kuma getting stop if one monitor is gone wrong
This commit is contained in:
@@ -1803,7 +1803,11 @@ async function startMonitors() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (let monitor of list) {
|
for (let monitor of list) {
|
||||||
await monitor.start(io);
|
try {
|
||||||
|
await monitor.start(io);
|
||||||
|
} catch (e) {
|
||||||
|
log.error("monitor", e);
|
||||||
|
}
|
||||||
// Give some delays, so all monitors won't make request at the same moment when just start the server.
|
// Give some delays, so all monitors won't make request at the same moment when just start the server.
|
||||||
await sleep(getRandomInt(300, 1000));
|
await sleep(getRandomInt(300, 1000));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user