Repository: nifi Updated Branches: refs/heads/master a6b9364eb -> e25b26e9c
Revert "NIFI-5448 Changed from 'stop' to 'penalize' in allowablevalue field to make the popup more consistent." This reverts commit 9d2b698c1cdfb54411b9f147573767bdda6e355c. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/6b77e7dd Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/6b77e7dd Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/6b77e7dd Branch: refs/heads/master Commit: 6b77e7dd895affa739c55a7db969fa6bcde44ad1 Parents: a6b9364 Author: joewitt <[email protected]> Authored: Fri Oct 12 11:08:22 2018 -0400 Committer: joewitt <[email protected]> Committed: Fri Oct 12 11:08:22 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/6b77e7dd/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 ae44320..b5ff4ff 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 @@ -157,7 +157,7 @@ public class UpdateAttribute extends AbstractProcessor implements Searchable { } }; - public static final AllowableValue FAIL_STOP = new AllowableValue("penalize", "Penalize", "Penalize FlowFiles." + + public static final AllowableValue FAIL_STOP = new AllowableValue("stop", "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.");
