Skip to content

Commit

Permalink
fix of disabling elastic#26812
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrik Muhs committed Sep 28, 2017
1 parent 679e283 commit 4aec42b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;

import java.net.URISyntaxException;
import java.util.Arrays;
Expand All @@ -77,16 +76,17 @@
supportsDedicatedMasters = false, numDataNodes = 1,
transportClientRatio = 0.0)
@ThirdParty
@Ignore
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/26812")
public class AzureSnapshotRestoreTests extends ESBlobStoreRepositoryIntegTestCase {

private static Settings.Builder generateMockSettings() {
return Settings.builder().setSecureSettings(generateMockSecureSettings());
}

private static final AzureStorageService azureStorageService = new AzureStorageServiceImpl(generateMockSettings().build(),
AzureStorageSettings.load(generateMockSettings().build()));
// disabled for https://github.com/elastic/elasticsearch/issues/26812
private static final AzureStorageService azureStorageService = null;
//private static final AzureStorageService azureStorageService = new AzureStorageServiceImpl(generateMockSettings().build(),
// AzureStorageSettings.load(generateMockSettings().build()));

@Override
protected Settings nodeSettings(int nodeOrdinal) {
Expand Down

0 comments on commit 4aec42b

Please sign in to comment.