Skip to content

Commit 0d95e46

Browse files
MINOR: Remove unnecessary min.assignment.interval.ms config from test (#22120)
Remove the group.consumer.min.assignment.interval.ms config override from ConsumerGroupHeartbeatRequestTest's testStaticMembersRejoinWithDifferentServerAssignor. The config already defaults to 0 and we are very unlikely to ever change it, since we always want to allow a 0 value to disable assignment batching. Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
1 parent 3e32d9a commit 0d95e46

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

core/src/test/scala/unit/kafka/server/ConsumerGroupHeartbeatRequestTest.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,8 +1276,7 @@ class ConsumerGroupHeartbeatRequestTest(cluster: ClusterInstance) extends GroupC
12761276

12771277
@ClusterTest(
12781278
serverProperties = Array(
1279-
new ClusterConfigProperty(key = GroupCoordinatorConfig.CONSUMER_GROUP_ASSIGNMENT_INTERVAL_MS_CONFIG, value = "0"),
1280-
new ClusterConfigProperty(key = GroupCoordinatorConfig.CONSUMER_GROUP_MIN_ASSIGNMENT_INTERVAL_MS_CONFIG, value = "0")
1279+
new ClusterConfigProperty(key = GroupCoordinatorConfig.CONSUMER_GROUP_ASSIGNMENT_INTERVAL_MS_CONFIG, value = "0")
12811280
)
12821281
)
12831282
def testStaticMembersRejoinWithDifferentServerAssignor(): Unit = {

0 commit comments

Comments
 (0)