Skip to content

Commit

Permalink
[ issue #95 ] Release ES 6.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
agazzarini committed Nov 16, 2019
1 parent 939fad5 commit 0ee298a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion rre-maven-plugin/rre-maven-elasticsearch-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rre-maven-elasticsearch-plugin</artifactId>
<version>6.4.3</version>
<version>6.3.2</version>
<packaging>maven-plugin</packaging>
<name>RRE - Maven Elasticsearch Plugin</name>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>rre-maven-external-elasticsearch-plugin</artifactId>
<version>6.4.3</version>
<version>6.3.2</version>
<packaging>maven-plugin</packaging>
<name>RRE - Maven External Elasticsearch Plugin</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rre-search-platform-elasticsearch-impl</artifactId>
<version>6.4.3</version>
<version>6.3.2</version>
<name>RRE - Elasticsearch platform binding</name>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.action.search.SearchRequest;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.RequestOptions;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestHighLevelClient;

Expand Down Expand Up @@ -111,7 +110,7 @@ private SearchResponse runQuery(final String indexKey, final SearchRequest reque
if (client == null) {
throw new RuntimeException("No HTTP client found for index " + indexKey);
}
return client.search(request, RequestOptions.DEFAULT);
return client.search(request);
}

@Override
Expand Down

0 comments on commit 0ee298a

Please sign in to comment.