From f487495e022ed4e0e053ebe399b67e3081a831cc Mon Sep 17 00:00:00 2001 From: Henning Andersen <33268011+henningandersen@users.noreply.github.com> Date: Fri, 27 Sep 2019 20:44:32 +0200 Subject: [PATCH] Mute azure third party tests (#47205) Muted testCreateSnapshot, testCleanup and testListChildren Relates #47202 --- .../AzureStorageCleanupThirdPartyTests.java | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/plugins/repository-azure/src/test/java/org/elasticsearch/repositories/azure/AzureStorageCleanupThirdPartyTests.java b/plugins/repository-azure/src/test/java/org/elasticsearch/repositories/azure/AzureStorageCleanupThirdPartyTests.java index f791550adeb99..58d68405c37c5 100644 --- a/plugins/repository-azure/src/test/java/org/elasticsearch/repositories/azure/AzureStorageCleanupThirdPartyTests.java +++ b/plugins/repository-azure/src/test/java/org/elasticsearch/repositories/azure/AzureStorageCleanupThirdPartyTests.java @@ -109,4 +109,25 @@ private void ensureSasTokenPermissions() { })); future.actionGet(); } + + // override here to mute only for Azure, please remove this overload when un-muting + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/47202") + @Override + public void testCreateSnapshot() { + super.testCreateSnapshot(); + } + + // override here to mute only for Azure, please remove this overload when un-muting + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/47202") + @Override + public void testCleanup() throws Exception { + super.testCleanup(); + } + + // override here to mute only for Azure, please remove this overload when un-muting + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/47202") + @Override + public void testListChildren() throws Exception { + super.testListChildren(); + } }