From 74d41857c67a9dac0c94adeb0f61b609f63ed1ee Mon Sep 17 00:00:00 2001 From: Martijn van Groningen Date: Mon, 10 Sep 2018 16:46:15 +0200 Subject: [PATCH] mute test on windows Relates #33570 --- .../org/elasticsearch/xpack/ccr/CcrMultiClusterLicenseIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x-pack/plugin/ccr/qa/multi-cluster-with-non-compliant-license/src/test/java/org/elasticsearch/xpack/ccr/CcrMultiClusterLicenseIT.java b/x-pack/plugin/ccr/qa/multi-cluster-with-non-compliant-license/src/test/java/org/elasticsearch/xpack/ccr/CcrMultiClusterLicenseIT.java index 0562a88957c..7bc952a3ea8 100644 --- a/x-pack/plugin/ccr/qa/multi-cluster-with-non-compliant-license/src/test/java/org/elasticsearch/xpack/ccr/CcrMultiClusterLicenseIT.java +++ b/x-pack/plugin/ccr/qa/multi-cluster-with-non-compliant-license/src/test/java/org/elasticsearch/xpack/ccr/CcrMultiClusterLicenseIT.java @@ -6,6 +6,7 @@ package org.elasticsearch.xpack.ccr; +import org.apache.lucene.util.Constants; import org.elasticsearch.client.Request; import org.elasticsearch.client.ResponseException; import org.elasticsearch.common.Booleans; @@ -47,6 +48,7 @@ public class CcrMultiClusterLicenseIT extends ESRestTestCase { } public void testAutoFollow() throws Exception { + assumeFalse("windows is the worst", Constants.WINDOWS); if (runningAgainstLeaderCluster == false) { final Request request = new Request("PUT", "/_ccr/auto_follow/leader_cluster"); request.setJsonEntity("{\"leader_index_patterns\":[\"*\"]}");