From 8fca5b52049b977d197b1ee0bbf6109f8d1b0639 Mon Sep 17 00:00:00 2001 From: Dimitris Athanasiou Date: Wed, 4 Sep 2019 10:57:01 +0300 Subject: [PATCH] [7.x][ML] Unmute testStopOutlierDetectionWithEnoughDocumentsToScroll (#46271) (#46282) The test seems to have been failing due to a race condition between stopping the task and refreshing the destination index. In particular, we were going forward with refreshing the destination index even though the task stopped in the meantime. This was fixed in request. Closes #43960 Backport of #46271 --- .../xpack/ml/integration/RunDataFrameAnalyticsIT.java | 1 - 1 file changed, 1 deletion(-) diff --git a/x-pack/plugin/ml/qa/native-multi-node-tests/src/test/java/org/elasticsearch/xpack/ml/integration/RunDataFrameAnalyticsIT.java b/x-pack/plugin/ml/qa/native-multi-node-tests/src/test/java/org/elasticsearch/xpack/ml/integration/RunDataFrameAnalyticsIT.java index 6920949bb9a..88cc74a48b0 100644 --- a/x-pack/plugin/ml/qa/native-multi-node-tests/src/test/java/org/elasticsearch/xpack/ml/integration/RunDataFrameAnalyticsIT.java +++ b/x-pack/plugin/ml/qa/native-multi-node-tests/src/test/java/org/elasticsearch/xpack/ml/integration/RunDataFrameAnalyticsIT.java @@ -236,7 +236,6 @@ public class RunDataFrameAnalyticsIT extends MlNativeDataFrameAnalyticsIntegTest assertThat(searchStoredProgress(id).getHits().getTotalHits().value, equalTo(1L)); } - @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/43960") public void testStopOutlierDetectionWithEnoughDocumentsToScroll() { String sourceIndex = "test-stop-outlier-detection-with-enough-docs-to-scroll";