This is an automated email from the ASF dual-hosted git repository. aboda pushed a commit to branch NIFI-10255 in repository https://gitbox.apache.org/repos/asf/nifi.git
commit d3ec916e0ae98305d797752e36074d228e08d681 Author: Arpad Boda <[email protected]> AuthorDate: Thu Jul 21 01:08:52 2022 +0200 NIFI-10255 - Decription of original relationship of ExecuteStreamCommand processor might be misleading --- .../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 +}
