TaiJuWu commented on code in PR #20104:
URL: https://github.com/apache/kafka/pull/20104#discussion_r2187996371


##########
group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupCoordinatorConfig.java:
##########
@@ -437,6 +445,8 @@ public GroupCoordinatorConfig(AbstractConfig config) {
         this.shareGroupMaxHeartbeatIntervalMs = 
config.getInt(GroupCoordinatorConfig.SHARE_GROUP_MAX_HEARTBEAT_INTERVAL_MS_CONFIG);
         this.shareGroupMaxSize = 
config.getInt(GroupCoordinatorConfig.SHARE_GROUP_MAX_SIZE_CONFIG);
         this.shareGroupAssignors = shareGroupAssignors(config);
+        int initializeRetryMs = 
config.getInt(GroupCoordinatorConfig.SHARE_GROUP_INITIALIZE_RETRY_INTERVAL_MS_CONFIG);
+        this.shareGroupInitializeRetryIntervalMs = Math.max(initializeRetryMs, 
this.offsetCommitTimeoutMs);

Review Comment:
   Should this comparison add to `SHARE_GROUP_INITIALIZE_RETRY_INTERVAL_MS_DOC` 
for clarification ?



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to