You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by al...@apache.org on 2016/12/27 17:20:27 UTC

nifi git commit: NIFI-3253: Correcting documentation in Notify processor

Repository: nifi
Updated Branches:
  refs/heads/master 6c5d4084d -> af8ed8b7d


NIFI-3253: Correcting documentation in Notify processor

This closes #1359.

Signed-off-by: Aldrin Piri <al...@apache.org>


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

Branch: refs/heads/master
Commit: af8ed8b7de4580ddcf48dbdd8227124d0fe93200
Parents: 6c5d408
Author: Joe Gresock <jo...@lmco.com>
Authored: Fri Dec 23 14:28:46 2016 +0000
Committer: Aldrin Piri <al...@apache.org>
Committed: Tue Dec 27 12:19:08 2016 -0500

----------------------------------------------------------------------
 .../src/main/java/org/apache/nifi/processors/standard/Notify.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/af8ed8b7/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/Notify.java
----------------------------------------------------------------------
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 23052fc..32cd249 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();