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:
David Arthur 2025-03-11 16:35:38 -04:00 committed by GitHub
parent 52061bf4aa
commit 903d70d764
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -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.