From eab687ee5017cdebaccd8ed5d6dde2adc5e1e92e Mon Sep 17 00:00:00 2001 From: Arpad Boda Date: Thu, 21 Jul 2022 01:08:52 +0200 Subject: [PATCH] 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 --- .../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 +}