From 82513898134d7d115912065c43bcd024a2b07545 Mon Sep 17 00:00:00 2001 From: Esa Korhonen Date: Mon, 18 Mar 2019 12:06:47 +0200 Subject: [PATCH] Fix csmon configure Prevented the monitor from starting. --- server/modules/monitor/csmon/csmon.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/monitor/csmon/csmon.cc b/server/modules/monitor/csmon/csmon.cc index 01a02ee2f..c13ee20dc 100644 --- a/server/modules/monitor/csmon/csmon.cc +++ b/server/modules/monitor/csmon/csmon.cc @@ -121,7 +121,7 @@ void CsMonitor::update_server_status(MXS_MONITORED_SERVER* srv) bool CsMonitor::configure(const MXS_CONFIG_PARAMETER* pParams) { - if (MonitorWorkerSimple::configure(pParams)) + if (!MonitorWorkerSimple::configure(pParams)) { return false; }