From 0188769636a8d383b0f8968b20590b443bf79fe4 Mon Sep 17 00:00:00 2001 From: Pegasus <42954461+leonace924@users.noreply.github.com> Date: Tue, 6 Jan 2026 01:30:04 -0500 Subject: [PATCH] Update server/monitor-types/mysql.js Co-authored-by: Frank Elsinga --- server/monitor-types/mysql.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/monitor-types/mysql.js b/server/monitor-types/mysql.js index 549d2db02..5910227d3 100644 --- a/server/monitor-types/mysql.js +++ b/server/monitor-types/mysql.js @@ -45,7 +45,8 @@ class MysqlMonitorType extends MonitorType { throw new Error(`Query result did not meet the specified conditions (${result})`); } - heartbeat.msg = ""; + heartbeat.status = UP; + heartbeat.msg = "query did meet specified conditions"; } else { // Backwards compatible: just check connection and return row count const result = await this.mysqlQuery(monitor.databaseConnectionString, query, password);