pvillard31 commented on code in PR #9993:
URL: https://github.com/apache/nifi/pull/9993#discussion_r2142297219


##########
nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-shared/src/main/java/org/apache/nifi/kafka/shared/component/KafkaClientComponent.java:
##########
@@ -32,12 +32,11 @@ public interface KafkaClientComponent {
 
     PropertyDescriptor BOOTSTRAP_SERVERS = new PropertyDescriptor.Builder()
             .name("bootstrap.servers")
-            .displayName("Kafka Brokers")
-            .description("Comma-separated list of Kafka Brokers in the format 
host:port")
+            .displayName("Bootstrap Servers")
+            .description("Comma-separated list of Kafka Bootstrap Servers in 
the format host:port. Corresponds to Kafka bootstrap.servers property")
             .required(true)
-            .addValidator(StandardValidators.HOSTNAME_PORT_LIST_VALIDATOR)
-            .expressionLanguageSupported(ExpressionLanguageScope.ENVIRONMENT)
-            .defaultValue("localhost:9092")

Review Comment:
   Any reason for not keeping this validator and the default value?



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to