Repository: nifi Updated Branches: refs/heads/0.x 1c27e7d65 -> 103eaf883
NIFI-1945 - Corrects minor issue in "<Hash Attribute Name>" description This closes #481. Signed-off-by: Pierre Villard <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/103eaf88 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/103eaf88 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/103eaf88 Branch: refs/heads/0.x Commit: 103eaf883387381d98d843f1d056557f08e5ef3a Parents: 1c27e7d Author: Andre F de Miranda <[email protected]> Authored: Wed Jun 1 00:37:12 2016 +1000 Committer: Pierre Villard <[email protected]> Committed: Wed Jun 1 21:18:35 2016 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/nifi/processors/standard/HashContent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/103eaf88/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashContent.java ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashContent.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashContent.java index 9885599..7c7ca6b 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashContent.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/HashContent.java @@ -57,7 +57,7 @@ import org.apache.nifi.util.ObjectHolder; @CapabilityDescription("Calculates a hash value for the Content of a FlowFile and puts that hash value on the FlowFile as an attribute whose name " + "is determined by the <Hash Attribute Name> property") @WritesAttribute(attribute = "<Hash Attribute Name>", description = "This Processor adds an attribute whose value is the result of Hashing the " - + "existing FlowFile attributes. The name of this attribute is specified by the <Hash Attribute Name> property") + + "existing FlowFile content. The name of this attribute is specified by the <Hash Attribute Name> property") public class HashContent extends AbstractProcessor { public static final PropertyDescriptor ATTRIBUTE_NAME = new PropertyDescriptor.Builder()
