-
Notifications
You must be signed in to change notification settings - Fork 14.3k
KAFKA-18424: Consider splitting PlaintextAdminIntegrationTest#testConsumerGroups #19093
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
base: trunk
Are you sure you want to change the base?
Conversation
…sumerGroups JIRA: KAFKA-18424 PlaintextAdminIntegrationTest#testConsumerGroups tests too many things. We should split it into smaller units.
A label of 'needs-attention' was automatically added to this PR in order to raise the |
A label of 'needs-attention' was automatically added to this PR in order to raise the |
A label of 'needs-attention' was automatically added to this PR in order to raise the |
A label of 'needs-attention' was automatically added to this PR in order to raise the |
A label of 'needs-attention' was automatically added to this PR in order to raise the |
val producer = createProducer() | ||
try { | ||
producer.send(new ProducerRecord(testTopicName, 0, null, null)).get() | ||
} finally { | ||
Utils.closeQuietly(producer, "producer") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I add it to deflaky for assertion of groupEpoch.
Not sure why the empty topic will lead to groupEpoch changing.
I'm still investigating.
JIRA: KAFKA-18424
PlaintextAdminIntegrationTest#testConsumerGroups
test too many things. We should split it into smaller units.