You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mt...@apache.org on 2018/08/16 01:35:18 UTC

nifi git commit: NIFI-5448 Changed from 'stop' to 'penalize' in allowablevalue field to make the popup more consistent.

Repository: nifi
Updated Branches:
  refs/heads/master c2657ee04 -> 9d2b698c1


NIFI-5448 Changed from 'stop' to 'penalize' in allowablevalue field to make the popup more consistent.


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

Branch: refs/heads/master
Commit: 9d2b698c1cdfb54411b9f147573767bdda6e355c
Parents: c2657ee
Author: Mike Thomsen <mi...@gmail.com>
Authored: Wed Aug 15 21:35:09 2018 -0400
Committer: Mike Thomsen <mi...@gmail.com>
Committed: Wed Aug 15 21:35:09 2018 -0400

----------------------------------------------------------------------
 .../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/9d2b698c/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 0147608..29e903f 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
@@ -149,7 +149,7 @@ public class UpdateAttribute extends AbstractProcessor implements Searchable {
         }
     };
 
-    public static final AllowableValue FAIL_STOP = new AllowableValue("stop", "Penalize", "Penalize FlowFiles." +
+    public static final AllowableValue FAIL_STOP = new AllowableValue("penalize", "Penalize", "Penalize FlowFiles." +
             "This is based on the original behavior of the processor to allow for a smooth transition.");
     public static final AllowableValue FAIL_ROUTE = new AllowableValue("route", "Route to Failure Relationship",
             "If chosen, failed FlowFiles will be routed to the failure relationship.");