Skip to content

Commit

Permalink
Merge pull request civicrm#11250 from agh1/no-update-indices
Browse files Browse the repository at this point in the history
CRM-21298 System check: bypass missing indices check until update indices works
  • Loading branch information
colemanw authored and sluc23 committed Jan 10, 2018
2 parents b819640 + bb90f23 commit c796840
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CRM/Utils/Check/Component/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
Expand Down

0 comments on commit c796840

Please sign in to comment.