NIFI-2894: Fixed typo in PutSQL documentation

This closes #1129
This commit is contained in:
Matt Burgess 2016-10-13 09:19:08 -04:00 committed by Oleg Zhurakousky
parent d63e675a7d
commit 596b98865b
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ public class PutSQL extends AbstractProcessor {
static final PropertyDescriptor SUPPORT_TRANSACTIONS = new PropertyDescriptor.Builder()
.name("Support Fragmented Transactions")
.description("If true, when a FlowFile is consumed by this Processor, the Processor will first check the fragment.identifier and fragment.count attributes of that FlowFile. "
+ "If the fragment.count value is greater than 1, the Processor will not process any FlowFile will that fragment.identifier until all are available; "
+ "If the fragment.count value is greater than 1, the Processor will not process any FlowFile with that fragment.identifier until all are available; "
+ "at that point, it will process all FlowFiles with that fragment.identifier as a single transaction, in the order specified by the FlowFiles' fragment.index attributes. "
+ "This Provides atomicity of those SQL statements. If this value is false, these attributes will be ignored and the updates will occur independent of one another.")
.allowableValues("true", "false")