Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,9 @@ public static String waitAndGetShrinkIndexName(RestClient client, String origina
"GET",
SHRUNKEN_INDEX_PREFIX + "*" + originalIndex + "," + originalIndex + "/_ilm/explain"
);
// Sometimes, the original index might already have been deleted, so we need to ignore unavailable (concrete) indices.
explainRequest.addParameter("ignore_unavailable", Boolean.toString(true));
explainRequest.addParameter("expand_wildcards", "open,hidden");
explainRequest.addParameter("only_errors", Boolean.toString(false));
explainRequest.addParameter("only_managed", Boolean.toString(false));
Response response = client.performRequest(explainRequest);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public void testRolloverIsSkippedOnManualDataStreamRollover() throws Exception {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/70595")
public void testShrinkActionInPolicyWithoutHotPhase() throws Exception {
createNewSingletonPolicy(client(), policyName, "warm", new ShrinkAction(1, null, false));
createComposableTemplate(client(), template, dataStream + "*", getTemplate(policyName));
Expand Down