Skip to content

Commit 345bb2b

Browse files
Merge #371
371: Fix: Container extension "meili_search" is not registered. r=norkunas a=pan93412 # Pull Request ## Related issue #370 (comment) ## What does this PR do? "meili_search" does not match the bundle name, "meilisearch," which causes some strange bugs, such as this issue. I have completed a basic smoke test of PHP and YAML. I can confirm that the PHP configuration is now working with the Meilisearch bundle, while the old YAML configuration should function as it did before. ```bash $ php bin/console meilisearch:import --update-settings Importing for index App\Entity\Question Indexed a batch of 70 / 70 App\Entity\Question entities into dev_questions index (70 indexed since start) Setting "filterableAttributes" updated of "dev_questions". Setting "sortableAttributes" updated of "dev_questions". Done! ``` ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Yi-Jyun Pan <[email protected]>
2 parents 82afbe3 + 5e19616 commit 345bb2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ final class Configuration implements ConfigurationInterface
1313
{
1414
public function getConfigTreeBuilder(): TreeBuilder
1515
{
16-
$treeBuilder = new TreeBuilder('meili_search');
16+
$treeBuilder = new TreeBuilder('meilisearch');
1717
$rootNode = $treeBuilder->getRootNode();
1818

1919
$rootNode

0 commit comments

Comments
 (0)