Skip to content

Commit 8d975d2

Browse files
authored
Mute SimpleSecurityNetty4ServerTransportTests testThreadContext (#68654)
1 parent 256b838 commit 8d975d2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/framework/src/main/java/org/elasticsearch/transport/AbstractSimpleTransportTestCase.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,6 @@ public void handleException(TransportException exp) {
316316
}
317317
}
318318

319-
@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/67427")
320319
public void testThreadContext() throws ExecutionException, InterruptedException {
321320

322321
serviceA.registerRequestHandler("internal:ping_pong", ThreadPool.Names.GENERIC, StringMessageRequest::new,

x-pack/plugin/security/src/test/java/org/elasticsearch/xpack/security/transport/netty4/SimpleSecurityNetty4ServerTransportTests.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@
2525

2626
public class SimpleSecurityNetty4ServerTransportTests extends AbstractSimpleSecurityTransportTestCase {
2727

28+
@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/67427")
29+
@Override
30+
public void testThreadContext() {
31+
// This empty method is here just for the purpose of muting the
32+
// test defined in the base class
33+
}
34+
2835
@Override
2936
protected Transport build(Settings settings, final Version version, ClusterSettings clusterSettings, boolean doHandshake) {
3037
NamedWriteableRegistry namedWriteableRegistry = new NamedWriteableRegistry(Collections.emptyList());

0 commit comments

Comments
 (0)