Skip to content

Commit

Permalink
KAFKA-16023: Disable flaky tests in PlaintextConsumerTest (apache#15025)
Browse files Browse the repository at this point in the history
I observed several failed tests in PR builds. Let's first disable them and try to find a different way to test the async consumer with these tests.

Reviewers: Lucas Brutschy <[email protected]>
  • Loading branch information
philipnee authored Dec 17, 2023
1 parent 7f763d3 commit a6076c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ class PlaintextConsumerTest extends BaseConsumerTest {
}

@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedQuorumAndGroupProtocolNames)
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersAll"))
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersGenericGroupProtocolOnly"))
def testPerPartitionLeadMetricsCleanUpWithSubscribe(quorum: String, groupProtocol: String): Unit = {
val numMessages = 1000
val topic2 = "topic2"
Expand Down Expand Up @@ -1636,7 +1636,7 @@ class PlaintextConsumerTest extends BaseConsumerTest {
}

@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedQuorumAndGroupProtocolNames)
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersAll"))
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersGenericGroupProtocolOnly"))
def testPerPartitionLagMetricsCleanUpWithSubscribe(quorum: String, groupProtocol: String): Unit = {
val numMessages = 1000
val topic2 = "topic2"
Expand Down

0 comments on commit a6076c7

Please sign in to comment.