Skip to content

Commit

Permalink
Include hidden indices in DeprecationInfoAction (elastic#118035)
Browse files Browse the repository at this point in the history
This fixes an issue where the deprecation API wouldn't include hidden
indices by default.

Resolves elastic#118020
  • Loading branch information
dakrone authored Dec 12, 2024
1 parent 0cc08a9 commit c449da8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/changelog/118035.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 118035
summary: Include hidden indices in `DeprecationInfoAction`
area: Indices APIs
type: bug
issues:
- 118020
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ private static ClusterState removeSkippedSettings(ClusterState state, String[] i

public static class Request extends MasterNodeReadRequest<Request> implements IndicesRequest.Replaceable {

private static final IndicesOptions INDICES_OPTIONS = IndicesOptions.fromOptions(false, true, true, true);
private static final IndicesOptions INDICES_OPTIONS = IndicesOptions.fromOptions(false, true, true, true, true);
private String[] indices;

public Request(TimeValue masterNodeTimeout, String... indices) {
Expand Down

0 comments on commit c449da8

Please sign in to comment.