Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,6 @@ tests:
issue: https://github.com/elastic/elasticsearch/issues/121503
- class: org.elasticsearch.xpack.application.CohereServiceUpgradeIT
issue: https://github.com/elastic/elasticsearch/issues/121537
- class: org.elasticsearch.xpack.migrate.action.ReindexDatastreamIndexTransportActionIT
issue: https://github.com/elastic/elasticsearch/issues/121737
- class: org.elasticsearch.xpack.restart.FullClusterRestartIT
method: testWatcherWithApiKey {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/122061
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
import org.elasticsearch.action.bulk.BulkRequest;
import org.elasticsearch.action.bulk.BulkResponse;
import org.elasticsearch.action.index.IndexRequest;
import org.elasticsearch.action.ingest.DeletePipelineRequest;
import org.elasticsearch.action.ingest.DeletePipelineTransportAction;
import org.elasticsearch.action.ingest.PutPipelineRequest;
import org.elasticsearch.action.ingest.PutPipelineTransportAction;
import org.elasticsearch.cluster.block.ClusterBlockException;
Expand Down Expand Up @@ -70,18 +68,8 @@

public class ReindexDatastreamIndexTransportActionIT extends ESIntegTestCase {
@After
private void cleanupCluster() throws Exception {
safeGet(
clusterAdmin().execute(
DeletePipelineTransportAction.TYPE,
new DeletePipelineRequest(
TEST_REQUEST_TIMEOUT,
TEST_REQUEST_TIMEOUT,
MigrateTemplateRegistry.REINDEX_DATA_STREAM_PIPELINE_NAME
)
)
);
super.cleanUpCluster();
private void cleanup() {
deletePipeline(MigrateTemplateRegistry.REINDEX_DATA_STREAM_PIPELINE_NAME);
}

private static final String MAPPING = """
Expand Down