Repository: nifi Updated Branches: refs/heads/master 93795bc7b -> bcead3500
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/bcead350 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/bcead350 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/bcead350 Branch: refs/heads/master Commit: bcead3500d878a29c752a53cba4f244b694dc170 Parents: 93795bc 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:13:59 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/bcead350/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 d0e99f8..cea3803 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()
