small fix for down containers

pull/3169/head
Janne Nowak 1 year ago
parent 891f09def7
commit f30f00655f

@ -575,7 +575,7 @@ class Monitor extends BeanModel {
log.debug("monitor", `[${this.name}] Axios Request`);
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.msg = res.data.State.Health.Status;
} else if (res.data.State.Running) {

Loading…
Cancel
Save