This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 7928efa120e NIFI-15859 Fixed ExecuteGroovyScript Documentation to
Indicate Dynamic Property EL Scope is ENVIRONMENT (#11162)
7928efa120e is described below
commit 7928efa120e209c14767ce7e91182fee195b3712
Author: dan-s1 <[email protected]>
AuthorDate: Mon Apr 20 22:16:59 2026 -0400
NIFI-15859 Fixed ExecuteGroovyScript Documentation to Indicate Dynamic
Property EL Scope is ENVIRONMENT (#11162)
Signed-off-by: David Handermann <[email protected]>
---
.../java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-extension-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java
b/nifi-extension-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java
index c2566c696be..696f8be91e3 100644
---
a/nifi-extension-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java
+++
b/nifi-extension-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java
@@ -79,7 +79,7 @@ import java.util.Set;
@SupportsSensitiveDynamicProperties
@DynamicProperty(name = "A script engine property to update",
value = "The value to set it to",
- expressionLanguageScope = ExpressionLanguageScope.FLOWFILE_ATTRIBUTES,
+ expressionLanguageScope = ExpressionLanguageScope.ENVIRONMENT,
description = "Updates a script engine property specified by the
Dynamic Property's key with the value specified by the Dynamic Property's
value. "
+ "Use `CTL.` to access any controller services, `SQL.` to
access any DBCPServices, `RecordReader.` to access RecordReaderFactory
instances, or "
+ "`RecordWriter.` to access any RecordSetWriterFactory
instances.")