Skip to content
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