mirror of https://github.com/apache/nifi.git
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 <exceptinofactory@apache.org>
This commit is contained in:
parent
ad781170e3
commit
eab687ee50
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue