We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62755bb commit 5d9ab0cCopy full SHA for 5d9ab0c
server/src/main/java/org/elasticsearch/action/admin/indices/rollover/TransportRolloverAction.java
@@ -256,7 +256,8 @@ protected void masterOperation(
256
IndicesOptions.WildcardOptions.builder().matchClosed(true).allowEmptyExpressions(false).build(),
257
IndicesOptions.GatekeeperOptions.DEFAULT
258
);
259
- IndicesStatsRequest statsRequest = new IndicesStatsRequest().indices(resolvedRolloverTarget.resource())
+ // Make sure to recombine any selectors on the stats request
260
+ IndicesStatsRequest statsRequest = new IndicesStatsRequest().indices(resolvedRolloverTarget.combined())
261
.clear()
262
.indicesOptions(statsIndicesOptions)
263
.docs(true)
0 commit comments