Skip to content

Commit a35481b

Browse files
committed
Include hidden indices in DeprecationInfoAction
1 parent 4e8e973 commit a35481b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/deprecation/src/main/java/org/elasticsearch/xpack/deprecation/DeprecationInfoAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ private static ClusterState removeSkippedSettings(ClusterState state, String[] i
366366

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

369-
private static final IndicesOptions INDICES_OPTIONS = IndicesOptions.fromOptions(false, true, true, true);
369+
private static final IndicesOptions INDICES_OPTIONS = IndicesOptions.fromOptions(false, true, true, true, true);
370370
private String[] indices;
371371

372372
public Request(TimeValue masterNodeTimeout, String... indices) {

0 commit comments

Comments
 (0)