mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
small fix for down containers
This commit is contained in:
parent
891f09def7
commit
f30f00655f
@ -575,7 +575,7 @@ class Monitor extends BeanModel {
|
|||||||
log.debug("monitor", `[${this.name}] Axios Request`);
|
log.debug("monitor", `[${this.name}] Axios Request`);
|
||||||
let res = await axios.request(options);
|
let res = await axios.request(options);
|
||||||
|
|
||||||
if (res.data.State.Health && res.data.State.Health.Status !== "healthy") {
|
if (res.data.State.Health && res.data.State.Health.Status !== "healthy" && res.data.State.Running) {
|
||||||
bean.status = PENDING;
|
bean.status = PENDING;
|
||||||
bean.msg = res.data.State.Health.Status;
|
bean.msg = res.data.State.Health.Status;
|
||||||
} else if (res.data.State.Running) {
|
} else if (res.data.State.Running) {
|
||||||
|
Loading…
Reference in New Issue
Block a user