Lehel44 commented on code in PR #8351:
URL: https://github.com/apache/nifi/pull/8351#discussion_r1503161499
##########
nifi-nar-bundles/nifi-apicurio-bundle/nifi-apicurio-schema-registry-service/src/main/java/org/apache/nifi/apicurio/schemaregistry/ApicurioSchemaRegistry.java:
##########
@@ -56,6 +57,15 @@ public class ApicurioSchemaRegistry extends
AbstractControllerService implements
.addValidator(StandardValidators.URL_VALIDATOR)
.required(true)
.build();
+ static final PropertyDescriptor SCHEMA_GROUP_ID = new
PropertyDescriptor.Builder()
+ .name("Schema Group ID")
+ .displayName("Schema Group ID")
+ .description("The artifact Group ID for the schemas")
+ .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+ .expressionLanguageSupported(ExpressionLanguageScope.ENVIRONMENT)
+ .defaultValue("default")
Review Comment:
For commiter: "If you do not specify a unique group ID, you must specify
../groups/default in the API path."
--
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]