Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a352543

Browse files
authoredJan 30, 2021
[PURIFY] remove all trace of x-pack rollups (#17)
This commit removes all trace of Elastic licensed rollups
1 parent 4d4f198 commit a352543

File tree

53 files changed

+3
-5934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3
-5934
lines changed
 

‎buildSrc/src/main/resources/checkstyle_suppressions.xml

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]MigrationDocumentationIT.java" id="SnippetLength" />
3737
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]MigrationClientDocumentationIT.java" id="SnippetLength" />
3838
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]MiscellaneousDocumentationIT.java" id="SnippetLength" />
39-
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]RollupDocumentationIT.java" id="SnippetLength" />
4039
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]SearchDocumentationIT.java" id="SnippetLength" />
4140
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]SecurityDocumentationIT.java" id="SnippetLength" />
4241
<suppress files="client[/\\]rest-high-level[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]client[/\\]documentation[/\\]SnapshotClientDocumentationIT.java" id="SnippetLength" />

‎client/rest-high-level/src/main/java/org/elasticsearch/client/RequestConverters.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,7 @@ static Request update(UpdateRequest updateRequest) throws IOException {
400400
* Convert a {@linkplain SearchRequest} into a {@linkplain Request}.
401401
* @param searchRequest the request to convert
402402
* @param searchEndpoint the name of the search endpoint. {@literal _search}
403-
* for standard searches and {@literal _rollup_search} for rollup
404-
* searches.
403+
* for standard searches
405404
*/
406405
static Request search(SearchRequest searchRequest, String searchEndpoint) throws IOException {
407406
Request request = new Request(HttpPost.METHOD_NAME, endpoint(searchRequest.indices(), searchRequest.types(), searchEndpoint));

0 commit comments

Comments
 (0)
Please sign in to comment.