Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2706#discussion_r188743200
--- Diff:
nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/src/main/java/org/apache/nifi/schema/access/SchemaAccessUtils.java
---
@@ -85,7 +85,7 @@
.description("Specifies the name of the branch to use when
looking up the schema in the Schema Registry property. " +
"If the chosen Schema Registry does not support
branching, this value will be ignored.")
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
- .expressionLanguageSupported(true)
+
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
--- End diff --
Yeah, I'll change that. With 5145 in place now, the test framework won't
care.
---