From 642bdb6cd9bffb8acddd05f8046e40d7d1cd64c4 Mon Sep 17 00:00:00 2001 From: Tanguy Leroux Date: Tue, 28 Mar 2017 16:29:57 +0200 Subject: [PATCH] [Test] Mute IndicesStatsTests See https://github.com/elastic/x-pack-elasticsearch/issues/496 Original commit: elastic/x-pack-elasticsearch@80aa60bc27125b39b5187d926d98d7161efd1557 --- .../xpack/monitoring/resolver/indices/IndicesStatsTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/src/test/java/org/elasticsearch/xpack/monitoring/resolver/indices/IndicesStatsTests.java b/plugin/src/test/java/org/elasticsearch/xpack/monitoring/resolver/indices/IndicesStatsTests.java index c45c7b2a203..c875d9bfcfe 100644 --- a/plugin/src/test/java/org/elasticsearch/xpack/monitoring/resolver/indices/IndicesStatsTests.java +++ b/plugin/src/test/java/org/elasticsearch/xpack/monitoring/resolver/indices/IndicesStatsTests.java @@ -5,6 +5,7 @@ */ package org.elasticsearch.xpack.monitoring.resolver.indices; +import org.apache.lucene.util.LuceneTestCase; import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse; import org.elasticsearch.action.search.SearchResponse; import org.elasticsearch.common.settings.Settings; @@ -21,6 +22,7 @@ import java.util.concurrent.TimeUnit; import static org.hamcrest.Matchers.greaterThan; @ClusterScope(scope = Scope.TEST, numClientNodes = 0) +@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/496") public class IndicesStatsTests extends MonitoringIntegTestCase { @Override