From 0122dd88e47e0f7272f428936e2228fed5de3531 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Tue, 13 Mar 2018 12:19:54 +0100 Subject: [PATCH] TASK: Fix call to non existing method --- Classes/Connection/Elasticsearch/IndexFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Connection/Elasticsearch/IndexFactory.php b/Classes/Connection/Elasticsearch/IndexFactory.php index d274db7..6493c3c 100644 --- a/Classes/Connection/Elasticsearch/IndexFactory.php +++ b/Classes/Connection/Elasticsearch/IndexFactory.php @@ -85,7 +85,7 @@ class IndexFactory implements Singleton foreach (['analyzer', 'filter'] as $optionsToExpand) { if (isset($configuration['analysis'][$optionsToExpand])) { foreach ($configuration['analysis'][$optionsToExpand] as $key => $options) { - $configuration['analysis'][$optionsToExpand][$key] = $this->prepareOptions($options); + $configuration['analysis'][$optionsToExpand][$key] = $this->prepareAnalyzerConfiguration($options); } } }