Skip to content

Commit

Permalink
Mute azure third party tests (#47205)
Browse files Browse the repository at this point in the history
Muted testCreateSnapshot, testCleanup and testListChildren

Relates #47202
  • Loading branch information
henningandersen authored Sep 27, 2019
1 parent 50c2da9 commit f487495
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}

0 comments on commit f487495

Please sign in to comment.