From 404cac7b6b8a2f1c0fc25ce0dc3c7aca493e7d81 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Thu, 22 Jun 2017 16:16:50 +0200 Subject: [PATCH] Tests: Disabling another failing OpenLDAP test Relates elastic/x-pack-elasticsearch#1823 Original commit: elastic/x-pack-elasticsearch@88ee3d3eacf6ed8858bd16b5b50206e637c7f774 --- .../integration/ldap/MultipleAdRealmTests.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/plugin/src/test/java/org/elasticsearch/integration/ldap/MultipleAdRealmTests.java b/plugin/src/test/java/org/elasticsearch/integration/ldap/MultipleAdRealmTests.java index add92fcf8af..1eb9028d9f6 100644 --- a/plugin/src/test/java/org/elasticsearch/integration/ldap/MultipleAdRealmTests.java +++ b/plugin/src/test/java/org/elasticsearch/integration/ldap/MultipleAdRealmTests.java @@ -5,17 +5,17 @@ */ package org.elasticsearch.integration.ldap; +import org.apache.lucene.util.LuceneTestCase.AwaitsFix; +import org.elasticsearch.common.logging.ESLoggerFactory; +import org.elasticsearch.common.settings.Settings; +import org.elasticsearch.test.junit.annotations.Network; +import org.junit.BeforeClass; + import java.io.IOException; import java.nio.file.Path; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; -import java.util.stream.Stream; - -import org.elasticsearch.common.logging.ESLoggerFactory; -import org.elasticsearch.common.settings.Settings; -import org.elasticsearch.test.junit.annotations.Network; -import org.junit.BeforeClass; /** * This tests that configurations that contain two AD realms work correctly. @@ -23,6 +23,7 @@ import org.junit.BeforeClass; * just their userid (the AuthenticationService tries them in order) */ @Network +@AwaitsFix(bugUrl="https://github.com/elastic/x-pack-elasticsearch/issues/1823") public class MultipleAdRealmTests extends AbstractAdLdapRealmTestCase { private static RealmConfig secondaryRealmConfig;