RivenSun2 commented on code in PR #12010: URL: https://github.com/apache/kafka/pull/12010#discussion_r855742356
########## core/src/main/scala/kafka/admin/BrokerApiVersionsCommand.scala: ########## @@ -231,6 +232,7 @@ object BrokerApiVersionsCommand { CommonClientConfigs.SECURITY_PROTOCOL_CONFIG, ConfigDef.Type.STRING, CommonClientConfigs.DEFAULT_SECURITY_PROTOCOL, + in(Utils.enumOptions(classOf[SecurityProtocol]):_*), Review Comment: Maybe Scala does not support indefinite parameters, that is `String... param` ########## clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java: ########## @@ -542,8 +544,16 @@ static Map<String, Object> appendSerializerToConfig(Map<String, Object> configs, Map<String, Object> newConfigs = new HashMap<>(configs); if (keySerializer != null) newConfigs.put(KEY_SERIALIZER_CLASS_CONFIG, keySerializer.getClass()); + else { + if (newConfigs.get(KEY_SERIALIZER_CLASS_CONFIG) == null) + throw new ConfigException(KEY_SERIALIZER_CLASS_CONFIG + " configuration for KafkaProducer must be non-null."); + } if (valueSerializer != null) newConfigs.put(VALUE_SERIALIZER_CLASS_CONFIG, valueSerializer.getClass()); + else { + if (newConfigs.get(VALUE_SERIALIZER_CLASS_CONFIG) == null) Review Comment: sure -- 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