Skip to content

Commit a0579d5

Browse files
authored
Remove dead @TestIssueLogging anns from repo-s3 (#129906) (#129921)
These logging directives relate to test failures that have long-since been closed so can be removed. Relates #101608 Relates #88841
1 parent c27773c commit a0579d5

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

modules/repository-s3/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,6 @@ esplugin.bundleSpec.from('config/repository-s3') {
125125
into 'config'
126126
}
127127

128-
tasks.named("internalClusterTest").configure {
129-
// TODO: remove once https://github.com/elastic/elasticsearch/issues/101608 is fixed
130-
systemProperty 'es.insecure_network_trace_enabled', 'true'
131-
}
132-
133128
tasks.named("thirdPartyAudit").configure {
134129
ignoreMissingClasses(
135130
// missing/unused classes

modules/repository-s3/src/internalClusterTest/java/org/elasticsearch/repositories/s3/S3BlobStoreRepositoryTests.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
import org.elasticsearch.test.BackgroundIndexer;
6464
import org.elasticsearch.test.ESIntegTestCase;
6565
import org.elasticsearch.test.MockLog;
66-
import org.elasticsearch.test.junit.annotations.TestIssueLogging;
6766
import org.elasticsearch.threadpool.ThreadPool;
6867
import org.elasticsearch.xcontent.NamedXContentRegistry;
6968
import org.elasticsearch.xcontent.XContentFactory;
@@ -178,15 +177,6 @@ protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {
178177
return builder.build();
179178
}
180179

181-
@Override
182-
@TestIssueLogging(
183-
issueUrl = "https://github.com/elastic/elasticsearch/issues/88841",
184-
value = "com.amazonaws.request:DEBUG,com.amazonaws.http.AmazonHttpClient:TRACE"
185-
)
186-
public void testRequestStats() throws Exception {
187-
super.testRequestStats();
188-
}
189-
190180
public void testAbortRequestStats() throws Exception {
191181
final String repository = createRepository(randomRepositoryName(), false);
192182

@@ -228,10 +218,6 @@ public void testAbortRequestStats() throws Exception {
228218
assertEquals(assertionErrorMsg, mockCalls, sdkRequestCounts);
229219
}
230220

231-
@TestIssueLogging(
232-
issueUrl = "https://github.com/elastic/elasticsearch/issues/101608",
233-
value = "com.amazonaws.request:DEBUG,com.amazonaws.http.AmazonHttpClient:TRACE"
234-
)
235221
public void testMetrics() throws Exception {
236222
// Create the repository and perform some activities
237223
final String repository = createRepository(randomRepositoryName(), false);

0 commit comments

Comments
 (0)