mirror of
https://github.com/apache/nifi.git
synced 2025-02-16 15:06:00 +00:00
corrected discription
This commit is contained in:
parent
b921bf602e
commit
bdc1ef1f8c
@ -64,9 +64,9 @@ import com.amazonaws.regions.Regions;
|
||||
public abstract class AbstractAWSProcessor<ClientType extends AmazonWebServiceClient> extends AbstractProcessor {
|
||||
|
||||
public static final Relationship REL_SUCCESS = new Relationship.Builder().name("success")
|
||||
.description("FlowFiles are routed to success after being successfully copied to Amazon S3").build();
|
||||
.description("FlowFiles are routed to success relationship").build();
|
||||
public static final Relationship REL_FAILURE = new Relationship.Builder().name("failure")
|
||||
.description("FlowFiles are routed to failure if unable to be copied to Amazon S3").build();
|
||||
.description("FlowFiles are routed to failure relationship").build();
|
||||
|
||||
public static final Set<Relationship> relationships = Collections.unmodifiableSet(
|
||||
new HashSet<>(Arrays.asList(REL_SUCCESS, REL_FAILURE)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user