From 142d6c899372169067ca8f5264dec3db39bc13f5 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Thu, 20 Jun 2024 11:06:44 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B07533=20-=20Detect=20and=20warns=20on=20G?= =?UTF-8?q?alera=20clusters?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/setuputils.class.inc.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup/setuputils.class.inc.php b/setup/setuputils.class.inc.php index 318dbc6ad..93fcece77 100644 --- a/setup/setuputils.class.inc.php +++ b/setup/setuputils.class.inc.php @@ -1232,8 +1232,8 @@ EOF $iClusters = $oDBSource->GetClusterNb(); if ($iClusters > 0) { - SetupLog::Warning('Warning - Galera can lead to malfunctions and data corruption. Combodo does not support this type of infrastructure.'); - $aResult['checks'][] = new CheckResult(CheckResult::WARNING, 'Galera can lead to malfunctions and data corruption. Combodo does not support this type of infrastructure.'); + SetupLog::Warning('Warning - Using Galera will cause malfunctions and data corruptions. Combodo does not support this type of infrastructure.'); + $aResult['checks'][] = new CheckResult(CheckResult::WARNING, 'Using Galera will cause malfunctions and data corruptions. Combodo does not support this type of infrastructure.'); } try { @@ -1351,8 +1351,6 @@ EOF static public function AsyncCheckDB($oPage, $aParameters) { - SetupPage::log('Info - CheckDB'); - $sDBServer = $aParameters['db_server']; $sDBUser = $aParameters['db_user']; $sDBPwd = $aParameters['db_pwd'];