From d501eee26d11a2c06192b1bb00fdb78b7c710e5d Mon Sep 17 00:00:00 2001 From: Joe Gresock Date: Fri, 23 Dec 2016 14:28:46 +0000 Subject: [PATCH] NIFI-3253: Correcting documentation in Notify processor --- .../main/java/org/apache/nifi/processors/standard/Notify.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/Notify.java b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/Notify.java index 23052fca7b46..32cd249d2b09 100644 --- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/Notify.java +++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/Notify.java @@ -65,7 +65,7 @@ public class Notify extends AbstractProcessor { // Identifies the distributed map cache client public static final PropertyDescriptor DISTRIBUTED_CACHE_SERVICE = new PropertyDescriptor.Builder() .name("Distributed Cache Service") - .description("The Controller Service that is used to check for release signals from a corresponding Notify processor") + .description("The Controller Service that is used to cache release signals in order to release files queued at a corresponding Wait processor") .required(true) .identifiesControllerService(DistributedMapCacheClient.class) .build();