From fd69d490c04b30b668e709b4a977b4e2d412b944 Mon Sep 17 00:00:00 2001 From: Dimitris Athanasiou Date: Tue, 3 Sep 2019 18:35:25 +0300 Subject: [PATCH] [7.4][ML] Unmute testStopOutlierDetectionWithEnoughDocumentsToScroll (#46271) 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 --- .../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 6920949bb9a14..88cc74a48b02f 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 void testOutlierDetectionWithMoreFieldsThanDocValueFieldLimit() throws Ex 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";