From d11bbfd7cf9f16ade8b4e16a1496e1c3688524b7 Mon Sep 17 00:00:00 2001 From: Dimitris Athanasiou Date: Tue, 3 Sep 2019 15:22:56 +0300 Subject: [PATCH] [ML] Unmute testStopOutlierDetectionWithEnoughDocumentsToScroll 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";