lucasbru commented on code in PR #18278:
URL: https://github.com/apache/kafka/pull/18278#discussion_r1912755471
##########
streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/OptimizedKTableIntegrationTest.java:
##########
@@ -78,24 +80,28 @@ public class OptimizedKTableIntegrationTest {
private static final String INPUT_TOPIC_NAME = "input-topic";
private static final String TABLE_NAME = "source-table";
- public static final EmbeddedKafkaCluster CLUSTER = new
EmbeddedKafkaCluster(NUM_BROKERS);
+ public static EmbeddedKafkaCluster cluster;
@BeforeAll
public static void startCluster() throws IOException {
- CLUSTER.start();
+ final Properties props = new Properties();
+
props.setProperty(GroupCoordinatorConfig.GROUP_COORDINATOR_REBALANCE_PROTOCOLS_CONFIG,
"classic,consumer,streams");
Review Comment:
Yes, I think you are right. Parametrizing which protocols are enabled on the
cluster is overcomplicating things.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]