mirror of https://github.com/apache/kafka.git
MINOR Mark Tls13SelectorTest#testCloseOldestConnection as flaky (#19178)
This test has a flakiness around 7%. It caused two back-to-back failures on trunk recently. Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
52061bf4aa
commit
903d70d764
|
@ -18,6 +18,7 @@
|
|||
package org.apache.kafka.common.network;
|
||||
|
||||
import org.apache.kafka.common.config.SslConfigs;
|
||||
import org.apache.kafka.common.test.api.Flaky;
|
||||
import org.apache.kafka.test.TestSslUtils;
|
||||
import org.apache.kafka.test.TestUtils;
|
||||
|
||||
|
@ -46,6 +47,13 @@ public class Tls13SelectorTest extends SslSelectorTest {
|
|||
return configs;
|
||||
}
|
||||
|
||||
@Flaky(value = "KAFKA-14249", comment = "Copied from base class. Remove this override once the flakiness has been resolved.")
|
||||
@Test
|
||||
@Override
|
||||
public void testCloseOldestConnection() throws Exception {
|
||||
super.testCloseOldestConnection();
|
||||
}
|
||||
|
||||
/**
|
||||
* TLS 1.3 has a post-handshake key and IV update, which will update the sending and receiving keys
|
||||
* for one side of the connection.
|
||||
|
|
Loading…
Reference in New Issue