Merge pull request #151 from geecu/fix_search_command
fix search command when no index option is passed
This commit is contained in:
commit
20a58c502c
2 changed files with 4 additions and 3 deletions
|
|
@ -40,7 +40,8 @@ class SearchCommand extends ContainerAwareCommand
|
|||
*/
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$index = $this->getContainer()->get('foq_elastica.index_manager')->getIndex($input->getOption('index'));
|
||||
$indexName = $input->getOption('index');
|
||||
$index = $this->getContainer()->get('foq_elastica.index_manager')->getIndex($indexName ? $indexName : null);
|
||||
$type = $index->getType($input->getArgument('type'));
|
||||
$query = Elastica_Query::create($input->getArgument('query'));
|
||||
$query->setLimit($input->getOption('limit'));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue