You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch is the second of a series of patches to remove the old group
coordinator. With the release of Apache Kafka 4.0, the so-called new
group coordinator is the default and only option available now.
The patch removes `group.coordinator.new.enable` (internal config) and
all its usages (integration tests, unit tests, etc.). It also cleans up
`KafkaApis` to remove logic only used by the old group coordinator.
Reviewers: Jeff Kim <[email protected]>, Chia-Ping Tsai <[email protected]>
Copy file name to clipboardExpand all lines: clients/clients-integration-tests/src/test/java/org/apache/kafka/clients/consumer/ConsumerIntegrationTest.java
+1-6
Original file line number
Diff line number
Diff line change
@@ -44,18 +44,13 @@
44
44
publicclassConsumerIntegrationTest {
45
45
46
46
@ClusterTests({
47
-
@ClusterTest(serverProperties = {
48
-
@ClusterConfigProperty(key = "offsets.topic.num.partitions", value = "1"),
49
-
@ClusterConfigProperty(key = "offsets.topic.replication.factor", value = "1"),
50
-
@ClusterConfigProperty(key = "group.coordinator.new.enable", value = "false")
51
-
}),
52
47
@ClusterTest(serverProperties = {
53
48
@ClusterConfigProperty(key = "offsets.topic.num.partitions", value = "1"),
54
49
@ClusterConfigProperty(key = "offsets.topic.replication.factor", value = "1"),
55
50
@ClusterConfigProperty(key = "group.coordinator.rebalance.protocols", value = "classic")
0 commit comments