Fix: Fix incorrect handling for container down

This commit is contained in:
Nelson Chan 2023-01-03 22:07:14 +08:00
parent b8e8c1b9db
commit 204792dd2d
1 changed files with 3 additions and 1 deletions

View File

@ -514,7 +514,9 @@ class Monitor extends BeanModel {
let res = await axios.request(options);
if (res.data.State.Running) {
bean.status = UP;
bean.msg = "";
bean.msg = res.data.State.Status;
} else {
throw Error("Container State is " + res.data.State.Status);
}
} else if (this.type === "mqtt") {
bean.msg = await mqttAsync(this.hostname, this.mqttTopic, this.mqttSuccessMessage, {