Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.16] Fix TimeSeriesDataStreamsIT.testShrinkActionInPolicyWithoutHotPhase (#123153) #123739

Merged
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 @@ -457,6 +457,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