mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-18 13:24:19 -05:00
fix #3767 by @nougad - treat empty healthcheck reported by podman as up
This commit is contained in:
parent
d73684115a
commit
7f5dfcc051
@ -770,12 +770,12 @@ class Monitor extends BeanModel {
|
||||
let res = await axios.request(options);
|
||||
|
||||
if (res.data.State.Running) {
|
||||
if (res.data.State.Health && res.data.State.Health.Status === "unhealthy") {
|
||||
bean.status = DOWN;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else if (res.data.State.Health && res.data.State.Health.Status !== "healthy") {
|
||||
if (res.data.State.Health && ![ "healthy", "unhealthy", "" ].includes(res.data.State.Health.Status)) {
|
||||
bean.status = PENDING;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else if (res.data.State.Health && res.data.State.Health.Status === "unhealthy") {
|
||||
bean.status = DOWN;
|
||||
bean.msg = res.data.State.Health.Status;
|
||||
} else {
|
||||
bean.status = UP;
|
||||
bean.msg = res.data.State.Health ? res.data.State.Health.Status : res.data.State.Status;
|
||||
|
Loading…
x
Reference in New Issue
Block a user