Skip to content

Commit 160d318

Browse files
committed
Remove dead @TestIssueLogging anns from repo-s3
These logging directives relate to test failures that have long-since been closed so can be removed. Relates #101608 Relates #88841
1 parent da6029f commit 160d318

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

modules/repository-s3/build.gradle

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

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

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

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,6 @@ protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {
181181
return builder.build();
182182
}
183183

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

@@ -233,10 +224,6 @@ public void testAbortRequestStats() throws Exception {
233224
assertEquals(assertionErrorMsg, mockCalls, sdkRequestCounts);
234225
}
235226

236-
@TestIssueLogging(
237-
issueUrl = "https://github.com/elastic/elasticsearch/issues/101608",
238-
value = "com.amazonaws.request:DEBUG,com.amazonaws.http.AmazonHttpClient:TRACE"
239-
)
240227
public void testMetrics() throws Exception {
241228
// Create the repository and perform some activities
242229
final String repository = createRepository(randomRepositoryName(), false);

0 commit comments

Comments
 (0)