Skip to content

Commit

Permalink
KAFKA-16957 Enable KafkaConsumerTest#configurableObjectsShouldSeeGene…
Browse files Browse the repository at this point in the history
…ratedClientId to work with CLASSIC and CONSUMER (apache#16370)

Reviewers: Kirk True <[email protected]>, Chia-Ping Tsai <[email protected]>
  • Loading branch information
chiacyu authored and TaiJuWu committed Jul 4, 2024
1 parent 0fd53d0 commit 7716cc2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3195,8 +3195,9 @@ private void prepareJoinGroupAndVerifyReason(
// TODO: this test triggers a bug with the CONSUMER group protocol implementation.
// The bug will be investigated and fixed so this test can use both group protocols.
@ParameterizedTest
@EnumSource(value = GroupProtocol.class, names = "CLASSIC")
@EnumSource(value = GroupProtocol.class)
public void configurableObjectsShouldSeeGeneratedClientId(GroupProtocol groupProtocol) {
CLIENT_IDS.clear();
Properties props = new Properties();
props.put(ConsumerConfig.GROUP_PROTOCOL_CONFIG, groupProtocol.name());
props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9999");
Expand Down

0 comments on commit 7716cc2

Please sign in to comment.