clarkwtc commented on code in PR #19070: URL: https://github.com/apache/kafka/pull/19070#discussion_r1976670186
########## metadata/src/main/java/org/apache/kafka/controller/ConfigurationControlManager.java: ########## @@ -385,6 +388,10 @@ private ApiError validateAlterConfig( new ApiError(INVALID_CONFIG, "Cluster-level " + MIN_IN_SYNC_REPLICAS_CONFIG + " cannot be removed while ELR is enabled."); + private static final ApiError DISALLOWED_CONFIG_VALUE_SIZE_ERROR = + new ApiError(INVALID_CONFIG, String.format("The configuration value cannot be added because " + + "it exceeds the maximum value size of %d bytes.", Short.MAX_VALUE)); Review Comment: @m1a2st I’ll be careful about maintaining consistent indentation style. -- 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