You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2017/01/05 17:51:50 UTC

nifi git commit: NIFI-3283 Fixing typo in UpdateAttribute error message

Repository: nifi
Updated Branches:
  refs/heads/master 7c9563420 -> ac42178e9


NIFI-3283 Fixing typo in UpdateAttribute error message

This closes #1396.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/ac42178e
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/ac42178e
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/ac42178e

Branch: refs/heads/master
Commit: ac42178e9b133131eff2f91435d17e9efbf45efa
Parents: 7c95634
Author: jpercivall <JP...@apache.org>
Authored: Thu Jan 5 10:39:57 2017 -0500
Committer: Pierre Villard <pi...@gmail.com>
Committed: Thu Jan 5 18:51:40 2017 +0100

----------------------------------------------------------------------
 .../org/apache/nifi/processors/attributes/UpdateAttribute.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/ac42178e/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-processor/src/main/java/org/apache/nifi/processors/attributes/UpdateAttribute.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-processor/src/main/java/org/apache/nifi/processors/attributes/UpdateAttribute.java b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-processor/src/main/java/org/apache/nifi/processors/attributes/UpdateAttribute.java
index 699c8e2..a64279d 100644
--- a/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-processor/src/main/java/org/apache/nifi/processors/attributes/UpdateAttribute.java
+++ b/nifi-nar-bundles/nifi-update-attribute-bundle/nifi-update-attribute-processor/src/main/java/org/apache/nifi/processors/attributes/UpdateAttribute.java
@@ -283,7 +283,7 @@ public class UpdateAttribute extends AbstractProcessor implements Searchable {
             String initValue = context.getProperty(STATEFUL_VARIABLES_INIT_VALUE).getValue();
             if (initValue == null){
                 reasons.add(new ValidationResult.Builder().subject(STATEFUL_VARIABLES_INIT_VALUE.getDisplayName()).valid(false)
-                        .explanation("initial state value much be set if the processor is configured to store state.").build());
+                        .explanation("initial state value must be set if the processor is configured to store state.").build());
             }
         }