diff --git a/bin/console b/bin/console index c5a24bcd35..eeba5b2142 100755 --- a/bin/console +++ b/bin/console @@ -16,6 +16,7 @@ use Alchemy\Phrasea\Command\Plugin\ListPlugin; use Alchemy\Phrasea\Command\Setup\H264ConfigurationDumper; use Alchemy\Phrasea\Command\Setup\H264MappingGenerator; use Alchemy\Phrasea\Command\SearchEngine\Debug\QueryParseCommand; +use Alchemy\Phrasea\Command\SearchEngine\Debug\QuerySampleCommand; use Alchemy\Phrasea\Command\SearchEngine\IndexCreateCommand; use Alchemy\Phrasea\Command\SearchEngine\IndexDropCommand; use Alchemy\Phrasea\Command\SearchEngine\MappingUpdateCommand; @@ -129,6 +130,7 @@ if ($cli['search_engine.type'] === SearchEngineInterface::TYPE_ELASTICSEARCH) { $cli->command(new MappingUpdateCommand()); $cli->command(new IndexPopulateCommand()); $cli->command(new QueryParseCommand()); + $cli->command(new QuerySampleCommand()); $cli->command(new FindConceptsCommand()); }