From af10fd65e706578e81d38e6bba3b7ac22321ecb2 Mon Sep 17 00:00:00 2001 From: Ioannis Kakavas Date: Mon, 14 May 2018 18:48:11 +0300 Subject: [PATCH] Unmute IndexUpgradeIT tests The errors were caused because release tests would use a copy of the public key that was formatted differently. The change to the public key format was introduced in [1]. Release tests Jenkins job has now been updated to use the correct key format depending on the branch they run on [2] Closes #30430 [1] https://github.com/elastic/elasticsearch/pull/30251 [2] https://github.com/elastic/infra/pull/4944 --- .../java/org/elasticsearch/xpack/upgrade/IndexUpgradeIT.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/x-pack/plugin/upgrade/src/test/java/org/elasticsearch/xpack/upgrade/IndexUpgradeIT.java b/x-pack/plugin/upgrade/src/test/java/org/elasticsearch/xpack/upgrade/IndexUpgradeIT.java index 9f1fb95ed48..ef5c3acc3d2 100644 --- a/x-pack/plugin/upgrade/src/test/java/org/elasticsearch/xpack/upgrade/IndexUpgradeIT.java +++ b/x-pack/plugin/upgrade/src/test/java/org/elasticsearch/xpack/upgrade/IndexUpgradeIT.java @@ -5,7 +5,6 @@ */ package org.elasticsearch.xpack.upgrade; -import org.apache.lucene.util.LuceneTestCase.AwaitsFix; import org.elasticsearch.Build; import org.elasticsearch.ElasticsearchSecurityException; import org.elasticsearch.action.search.SearchResponse; @@ -31,7 +30,6 @@ import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertThro import static org.hamcrest.Matchers.empty; import static org.hamcrest.core.IsEqual.equalTo; -@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/30430") public class IndexUpgradeIT extends IndexUpgradeIntegTestCase { @Before