Skip to content

Commit

Permalink
Mute AzureStorageCleanupThirdPartyTests.testCleanup (elastic#66635)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwbrown committed Dec 18, 2020
1 parent 04ba858 commit 39e1a0b
Showing 1 changed file with 17 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@

package org.elasticsearch.repositories.azure;

import com.azure.storage.blob.BlobContainerClient;
import com.azure.storage.blob.BlobServiceClient;
import com.azure.storage.blob.models.BlobStorageException;
import static org.hamcrest.Matchers.blankOrNullString;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.not;

import java.net.HttpURLConnection;
import java.util.Collection;

import org.elasticsearch.action.ActionRunnable;
import org.elasticsearch.action.support.PlainActionFuture;
import org.elasticsearch.action.support.master.AcknowledgedResponse;
Expand All @@ -33,12 +37,9 @@
import org.elasticsearch.repositories.AbstractThirdPartyRepositoryTestCase;
import org.elasticsearch.repositories.blobstore.BlobStoreRepository;

import java.net.HttpURLConnection;
import java.util.Collection;

import static org.hamcrest.Matchers.blankOrNullString;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.not;
import com.azure.storage.blob.BlobContainerClient;
import com.azure.storage.blob.BlobServiceClient;
import com.azure.storage.blob.models.BlobStorageException;

public class AzureStorageCleanupThirdPartyTests extends AbstractThirdPartyRepositoryTestCase {

Expand Down Expand Up @@ -121,4 +122,11 @@ private void ensureSasTokenPermissions() {
}));
future.actionGet();
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/66633")
@Override
// This override is only here so we can mute the test without muting the whole suite, remove it when the test is fixed
public void testCleanup() throws Exception {
super.testCleanup();
}
}

0 comments on commit 39e1a0b

Please sign in to comment.