Mark flaky tests for Dec 18, 2024 (#18263)

Reviewers: TengYao Chi <kitingiao@gmail.com>, Andrew Schofield <aschofield@confluent.io>
This commit is contained in:
David Arthur 2024-12-19 10:12:33 -05:00 committed by GitHub
parent 22d1ba8265
commit 64279d2e82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -59,7 +59,7 @@ import org.apache.kafka.common.utils.Utils;
import org.apache.kafka.test.TestUtils;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import java.nio.ByteBuffer;
@ -1435,6 +1435,7 @@ public class AbstractCoordinatorTest {
awaitFirstHeartbeat(heartbeatReceived);
}
@Tag("flaky") // "KAFKA-18310"
@Test
public void testWakeupAfterSyncGroupSentExternalCompletion() throws Exception {
setupCoordinator();
@ -1471,6 +1472,7 @@ public class AbstractCoordinatorTest {
awaitFirstHeartbeat(heartbeatReceived);
}
@Tag("flaky") // "KAFKA-18310"
@Test
public void testWakeupAfterSyncGroupReceived() throws Exception {
setupCoordinator();
@ -1504,8 +1506,8 @@ public class AbstractCoordinatorTest {
awaitFirstHeartbeat(heartbeatReceived);
}
@Tag("flaky") // KAFKA-15474 and KAFKA-18310
@Test
@Disabled("KAFKA-15474")
public void testWakeupAfterSyncGroupReceivedExternalCompletion() throws Exception {
setupCoordinator();

View File

@ -870,6 +870,7 @@ class TransactionsTest extends IntegrationTestHarness {
}
}
@Flaky("KAFKA-18306")
@ParameterizedTest(name = "{displayName}.quorum={0}.groupProtocol={1}.isTV2Enabled={2}")
@CsvSource(Array(
"kraft, classic, false",