Skip to content

Commit a5ab7da

Browse files
author
Christoph Büscher
committed
Mute TimeSeriesLifecycleActionsIT.testHistoryIsWrittenWithSuccess
Also muting TimeSeriesLifecycleActionsIT.testHistoryIsWrittenWithFailure. Tracked in #50353
1 parent b13a755 commit a5ab7da

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

x-pack/plugin/ilm/qa/multi-node/src/test/java/org/elasticsearch/xpack/ilm/TimeSeriesLifecycleActionsIT.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1077,6 +1077,7 @@ public void testRolloverStepRetriesUntilRolledOverIndexIsDeleted() throws Except
10771077
assertBusy(() -> assertThat(getStepKeyForIndex(index), equalTo(TerminalPolicyStep.KEY)));
10781078
}
10791079

1080+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/50353")
10801081
public void testHistoryIsWrittenWithSuccess() throws Exception {
10811082
String index = "index";
10821083

@@ -1119,6 +1120,8 @@ public void testHistoryIsWrittenWithSuccess() throws Exception {
11191120
assertBusy(() -> assertHistoryIsPresent(policy, index + "-000002", true, "check-rollover-ready"), 30, TimeUnit.SECONDS);
11201121
}
11211122

1123+
1124+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/50353")
11221125
public void testHistoryIsWrittenWithFailure() throws Exception {
11231126
String index = "index";
11241127

@@ -1353,7 +1356,9 @@ private static StepKey getStepKey(Map<String, Object> explainIndexResponse) {
13531356

13541357
private String getFailedStepForIndex(String indexName) throws IOException {
13551358
Map<String, Object> indexResponse = explainIndex(indexName);
1356-
if (indexResponse == null) return null;
1359+
if (indexResponse == null) {
1360+
return null;
1361+
}
13571362

13581363
return (String) indexResponse.get("failed_step");
13591364
}

0 commit comments

Comments
 (0)