mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 12:00:35 +03:00
added timeout for removing the dead loop state
This commit is contained in:
parent
227bbdea2f
commit
22256dfcd2
2 changed files with 5 additions and 2 deletions
|
@ -359,8 +359,10 @@ class Monitor extends BeanModel {
|
||||||
});
|
});
|
||||||
bean.status = UP;
|
bean.status = UP;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
bean.status = DOWN;
|
if (error.message !== "Timeout") {
|
||||||
bean.msg = error.message;
|
bean.status = DOWN;
|
||||||
|
bean.msg = error.message;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
bean.msg = "Unknown Monitor Type";
|
bean.msg = "Unknown Monitor Type";
|
||||||
|
|
|
@ -131,6 +131,7 @@ exports.mqttAsync = function (hostname, topic, okMessage, options = {}) {
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
client.end();
|
client.end();
|
||||||
|
reject("Timeout");
|
||||||
}, interval * 1000);
|
}, interval * 1000);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue