We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3701e9f commit 429d5d7Copy full SHA for 429d5d7
src/main/java/io/confluent/connect/elasticsearch/jest/JestElasticsearchClient.java
@@ -222,7 +222,7 @@ private boolean indexExists(String index) {
222
if (indexCache.contains(index)) {
223
return true;
224
}
225
- Action action = new IndicesExists.Builder(index).build();
+ Action<?> action = new IndicesExists.Builder(index).build();
226
try {
227
JestResult result = client.execute(action);
228
return result.isSucceeded();
0 commit comments