Repository: nifi
Updated Branches:
refs/heads/master 9f669aa94 -> f8cad0f8c
NIFI-1750 Updated ScanAttribute dictionary file processor property description.
This closes #1543.
Signed-off-by: Andy LoPresto <alopresto@apache.org>
Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/f8cad0f8
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/f8cad0f8
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/f8cad0f8
Branch: refs/heads/master
Commit: f8cad0f8c94869e2fd2a30896033c3c48eadbf14
Parents: 9f669aa
Author: Joe Trite <joetrite@gmail.com>
Authored: Fri Feb 24 16:18:54 2017 -0500
Committer: Andy LoPresto <alopresto@apache.org>
Committed: Fri Mar 3 17:36:40 2017 -0800
----------------------------------------------------------------------
.../java/org/apache/nifi/processors/standard/ScanAttribute.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/nifi/blob/f8cad0f8/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ScanAttribute.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ScanAttribute.java
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ScanAttribute.java
index cd3d36a..c3dd214 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ScanAttribute.java
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/ScanAttribute.java
@@ -83,7 +83,8 @@ public class ScanAttribute extends AbstractProcessor {
.build();
public static final PropertyDescriptor DICTIONARY_FILE = new PropertyDescriptor.Builder()
.name("Dictionary File")
- .description("A new-line-delimited text file that includes the terms that should
trigger a match. Empty lines are ignored.")
+ .description("A new-line-delimited text file that includes the terms that should
trigger a match. Empty lines are ignored. The contents of "
+ + "the text file are loaded into memory when the processor is scheduled
and reloaded when the contents are modified.")
.required(true)
.addValidator(StandardValidators.FILE_EXISTS_VALIDATOR)
.build();
|