Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KAFKA-15842: Correct handling of KafkaConsumer.committed for new consumer #14859

Merged
merged 10 commits into from
Dec 1, 2023
Prev Previous commit
Turn off flaky seek test for new consumer pending investigation
  • Loading branch information
AndrewJSchofield committed Nov 29, 2023
commit 9a8e1f2f7109648481fe97a5e0a67845c237ea93
Original file line number Diff line number Diff line change
Expand Up @@ -594,8 +594,9 @@ class PlaintextConsumerTest extends BaseConsumerTest {
assertThrows(classOf[InvalidTopicException], () => consumer.partitionsFor(";3# ads,{234"))
}

// Temporarily do not run flaky test for consumer group protocol
@ParameterizedTest(name = TestInfoUtils.TestWithParameterizedQuorumAndGroupProtocolNames)
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersAll"))
@MethodSource(Array("getTestQuorumAndGroupProtocolParametersGenericGroupProtocolOnly"))
Comment on lines -598 to +599
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😭

def testSeek(quorum: String, groupProtocol: String): Unit = {
val consumer = createConsumer()
val totalRecords = 50L
Expand Down