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(); + } }