mirror of https://github.com/apache/kafka.git
HOTFIX: Fix IQv2EndpointToPartitionsIntegrationTest (#19597)
CI / build (push) Waiting to run
Details
CI / build (push) Waiting to run
Details
It seems that IQv2EndpointToPartitionsIntegrationTest uses a non-existent method to create `EmbeddedKafkaCluster` Reviewers: Luke Chen <showuon@gmail.com>, PoAn Yang <payang@apache.org>, Ken Huang <s7133700@gmail.com>
This commit is contained in:
parent
f5b8891b0c
commit
08f6042f7a
|
@ -72,7 +72,7 @@ public class IQv2EndpointToPartitionsIntegrationTest {
|
|||
public void startCluster(final int standbyConfig) throws IOException {
|
||||
final Properties properties = new Properties();
|
||||
properties.put(GroupCoordinatorConfig.STREAMS_GROUP_NUM_STANDBY_REPLICAS_CONFIG, standbyConfig);
|
||||
cluster = EmbeddedKafkaCluster.withStreamsRebalanceProtocol(NUM_BROKERS, properties);
|
||||
cluster = new EmbeddedKafkaCluster(NUM_BROKERS, properties);
|
||||
cluster.start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue