diff --git a/src/applications/search/config/PhabricatorSearchConfigOptions.php b/src/applications/search/config/PhabricatorSearchConfigOptions.php index 84535cf26b..676789ae94 100644 --- a/src/applications/search/config/PhabricatorSearchConfigOptions.php +++ b/src/applications/search/config/PhabricatorSearchConfigOptions.php @@ -1,42 +1,42 @@ newOption('search.elastic.host', 'string', null) ->setLocked(true) ->setDescription(pht('Elastic Search host.')) ->addExample('http://elastic.example.com:9200/', pht('Valid Setting')), $this->newOption('search.elastic.namespace', 'string', 'phabricator') ->setLocked(true) ->setDescription(pht('Elastic Search index.')) ->addExample('phabricator2', pht('Valid Setting')), - $this->newOption('search.elastic.version', 'string', null) + $this->newOption('search.elastic.version', 'int', null) ->setLocked(true) ->setDescription(pht('Elastic Version, used for functions that work for a specific elastic version.')), $this->newOption('search.elastic.enabled', 'bool', false) ->setDescription(pht('Enable the elasticsearch backend.')) ->setBoolOptions(array(pht('Enable: Use elasticsearch'), pht('Disable: Use MySQL'))) ); } }