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 eab687ee50 NIFI-10255 Updated original relationship description on
ExecuteStreamCommand
eab687ee50 is described below
commit eab687ee5017cdebaccd8ed5d6dde2adc5e1e92e
Author: Arpad Boda <[email protected]>
AuthorDate: Thu Jul 21 01:08:52 2022 +0200
NIFI-10255 Updated original relationship description on ExecuteStreamCommand
- Description of original relationship of ExecuteStreamCommand processor
might be misleading
This closes #6229
Signed-off-by: David Handermann <[email protected]>
---
.../org/apache/nifi/processors/standard/ExecuteStreamCommand.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteStreamCommand.java
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteStreamCommand.java
index 2ebefcb1f1..00093bb972 100644
---
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteStreamCommand.java
+++
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ExecuteStreamCommand.java
@@ -173,7 +173,7 @@ public class ExecuteStreamCommand extends AbstractProcessor
{
public static final Relationship ORIGINAL_RELATIONSHIP = new
Relationship.Builder()
.name("original")
- .description("FlowFiles that were successfully processed.")
+ .description("The original FlowFile will be routed. It will have
new attributes detailing the result of the script execution.")
.build();
public static final Relationship OUTPUT_STREAM_RELATIONSHIP = new
Relationship.Builder()
.name("output stream")
@@ -636,4 +636,4 @@ public class ExecuteStreamCommand extends AbstractProcessor
{
writerThread.setDaemon(true);
writerThread.start();
}
-}
\ No newline at end of file
+}