Remove dead @TestIssueLogging anns from repo-s3 (#129906)

These logging directives relate to test failures that have long-since
been closed so can be removed.

Relates #101608
Relates #88841
This commit is contained in:
David Turner 2025-06-24 14:04:16 +01:00 committed by GitHub
parent aaee222dfa
commit 8573865341
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 19 deletions

View file

@ -124,11 +124,6 @@ esplugin.bundleSpec.from('config/repository-s3') {
into 'config'
}
tasks.named("internalClusterTest").configure {
// TODO: remove once https://github.com/elastic/elasticsearch/issues/101608 is fixed
systemProperty 'es.insecure_network_trace_enabled', 'true'
}
tasks.named("thirdPartyAudit").configure {
ignoreMissingClasses(
// missing/unused classes

View file

@ -65,7 +65,6 @@ import org.elasticsearch.telemetry.TestTelemetryPlugin;
import org.elasticsearch.test.BackgroundIndexer;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.test.MockLog;
import org.elasticsearch.test.junit.annotations.TestIssueLogging;
import org.elasticsearch.threadpool.ThreadPool;
import org.elasticsearch.xcontent.NamedXContentRegistry;
import org.elasticsearch.xcontent.XContentFactory;
@ -181,15 +180,6 @@ public class S3BlobStoreRepositoryTests extends ESMockAPIBasedRepositoryIntegTes
return builder.build();
}
@Override
@TestIssueLogging(
issueUrl = "https://github.com/elastic/elasticsearch/issues/88841",
value = "com.amazonaws.request:DEBUG,com.amazonaws.http.AmazonHttpClient:TRACE"
)
public void testRequestStats() throws Exception {
super.testRequestStats();
}
public void testAbortRequestStats() throws Exception {
final String repository = createRepository(randomRepositoryName(), false);
@ -233,10 +223,6 @@ public class S3BlobStoreRepositoryTests extends ESMockAPIBasedRepositoryIntegTes
assertEquals(assertionErrorMsg, mockCalls, sdkRequestCounts);
}
@TestIssueLogging(
issueUrl = "https://github.com/elastic/elasticsearch/issues/101608",
value = "com.amazonaws.request:DEBUG,com.amazonaws.http.AmazonHttpClient:TRACE"
)
public void testMetrics() throws Exception {
// Create the repository and perform some activities
final String repository = createRepository(randomRepositoryName(), false);