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:
Arpad Boda 2022-07-21 01:08:52 +02:00 committed by exceptionfactory
parent ad781170e3
commit eab687ee50
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}
}
}