dan-s1 commented on code in PR #10567:
URL: https://github.com/apache/nifi/pull/10567#discussion_r2571724809
##########
nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-shared/src/main/java/org/apache/nifi/kafka/shared/validation/DynamicPropertyValidator.java:
##########
@@ -48,10 +50,12 @@ public ValidationResult validate(final String subject,
final String input, final
if (subject.startsWith(PARTITIONS_PROPERTY_PREFIX)) {
builder.valid(true);
+ } else if (subject.startsWith(SASL_EXTENSION_PROPERTY_PREFIX)) {
+ builder.valid(true);
} else {
Review Comment:
Probably makes sense to combine these
```suggestion
if (subject.startsWith(PARTITIONS_PROPERTY_PREFIX) ||
subject.startsWith(SASL_EXTENSION_PROPERTY_PREFIX)) {
builder.valid(true);
} else {
```
--
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]