From e9043c73521dfb4cf1bf98f615556378636acca0 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Mon, 5 Jan 2026 08:40:32 +0100 Subject: [PATCH] Update server/model/monitor.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- server/model/monitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/monitor.js b/server/model/monitor.js index 90864f9d8..5019b1052 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -772,7 +772,7 @@ class Monitor extends BeanModel { bean.status = UP; bean.msg = "healthy"; } else if (res.data.State.Health.Status === "unhealthy") { - throw Error("Container State is unhealthy due according to its healthcheck"); + throw Error("Container State is unhealthy according to its healthcheck"); } else { bean.status = PENDING; bean.msg = res.data.State.Health.Status;