From bb90f2305c473ecaf94a3ccecf635f25fca28f85 Mon Sep 17 00:00:00 2001 From: Andrew Hunt Date: Wed, 11 Oct 2017 17:23:44 -0400 Subject: [PATCH] CRM-21298 System check: bypass missing indices check until update indices works --- CRM/Utils/Check/Component/Schema.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CRM/Utils/Check/Component/Schema.php b/CRM/Utils/Check/Component/Schema.php index 4e8c037274..2ef1867deb 100644 --- a/CRM/Utils/Check/Component/Schema.php +++ b/CRM/Utils/Check/Component/Schema.php @@ -37,6 +37,11 @@ class CRM_Utils_Check_Component_Schema extends CRM_Utils_Check_Component { */ public function checkIndices() { $messages = array(); + + // CRM-21298: The "Update Indices" tool that this check suggests is + // unreliable. Bypass this check until CRM-20817 and CRM-20533 are resolved. + return $messages; + $missingIndices = CRM_Core_BAO_SchemaHandler::getMissingIndices(); if ($missingIndices) { $html = ''; -- 2.25.1