From 857f4e9550d5bea18e4fc024fee10b4a31f14a10 Mon Sep 17 00:00:00 2001 From: Pegasus <42954461+leonace924@users.noreply.github.com> Date: Tue, 6 Jan 2026 01:30:19 -0500 Subject: [PATCH] Update server/monitor-types/mysql.js Co-authored-by: Frank Elsinga --- server/monitor-types/mysql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/monitor-types/mysql.js b/server/monitor-types/mysql.js index 5910227d3..c08f30403 100644 --- a/server/monitor-types/mysql.js +++ b/server/monitor-types/mysql.js @@ -42,7 +42,7 @@ class MysqlMonitorType extends MonitorType { const conditionsResult = evaluateExpressionGroup(conditions, { result: String(result) }); if (!conditionsResult) { - throw new Error(`Query result did not meet the specified conditions (${result})`); + throw new Error(`Query result (${result}) did not meet the specified conditions`); } heartbeat.status = UP;