Test: Re-enable upgrade integ tests (elastic/x-pack-elasticsearch#3917)

This commit removes awaitsfixes for upgrade tests. The fix was
previously made on a branch and did not make it to master until now.

relates elastic/x-pack-elasticsearch#3729

Original commit: elastic/x-pack-elasticsearch@3402bbe78e
This commit is contained in:
Ryan Ernst 2018-02-12 20:46:22 -08:00 committed by GitHub
parent c82fdad41d
commit 19e9afdf10
3 changed files with 1 additions and 3 deletions

View File

@ -30,7 +30,6 @@ import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertThro
import static org.hamcrest.Matchers.empty;
import static org.hamcrest.core.IsEqual.equalTo;
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3729")
public class IndexUpgradeIT extends IndexUpgradeIntegTestCase {
@Before

View File

@ -35,7 +35,7 @@ public abstract class IndexUpgradeIntegTestCase extends AbstractLicensesIntegrat
@Override
protected Collection<Class<? extends Plugin>> transportClientPlugins() {
return Collections.singletonList(XPackClientPlugin.class);
return Arrays.asList(XPackClientPlugin.class, ReindexPlugin.class);
}
private static String randomValidLicenseType() {
return randomFrom("trial", "platinum", "gold", "standard", "basic");

View File

@ -50,7 +50,6 @@ import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.Matchers.startsWith;
import static org.hamcrest.core.IsEqual.equalTo;
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3729")
public class InternalIndexReindexerIT extends IndexUpgradeIntegTestCase {
@Override