From 33c9180ccd143600159e94307746cc9b6c532bd7 Mon Sep 17 00:00:00 2001 From: Peter-Josef Meisch Date: Sun, 7 Aug 2022 20:33:07 +0200 Subject: [PATCH] Reenable test for the new Elasticsearch Client. Original Pull Request #2261 Closes #2260 --- .../CustomMethodRepositoryELCIntegrationTests.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/java/org/springframework/data/elasticsearch/repositories/custommethod/CustomMethodRepositoryELCIntegrationTests.java b/src/test/java/org/springframework/data/elasticsearch/repositories/custommethod/CustomMethodRepositoryELCIntegrationTests.java index 68c51bd29..f543b642b 100644 --- a/src/test/java/org/springframework/data/elasticsearch/repositories/custommethod/CustomMethodRepositoryELCIntegrationTests.java +++ b/src/test/java/org/springframework/data/elasticsearch/repositories/custommethod/CustomMethodRepositoryELCIntegrationTests.java @@ -41,4 +41,9 @@ public class CustomMethodRepositoryELCIntegrationTests extends CustomMethodRepos return new IndexNameProvider("custom-method-repository"); } } + + @Override + public boolean newElasticsearchClient() { + return true; + } }