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

nifi git commit: NIFI-3340 Modify description of the Directory property for PutHDFS to say it will create the directory if it doesn't exist

Repository: nifi
Updated Branches:
  refs/heads/master 3bb876eb8 -> ad98ac179


NIFI-3340 Modify description of the Directory property for PutHDFS to say it will create the directory if it doesn't exist

This closes #1424.

Signed-off-by: Bryan Bende <bb...@apache.org>


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

Branch: refs/heads/master
Commit: ad98ac179f69bc938ac4c972548a6fa205074fe7
Parents: 3bb876e
Author: Andrew Lim <an...@gmail.com>
Authored: Tue Jan 17 11:26:33 2017 -0500
Committer: Bryan Bende <bb...@apache.org>
Committed: Tue Jan 17 13:29:59 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/nifi/blob/ad98ac17/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java b/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java
index 414fd5e..7425b97 100644
--- a/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java
+++ b/nifi-nar-bundles/nifi-hadoop-bundle/nifi-hdfs-processors/src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java
@@ -180,7 +180,7 @@ public class PutHDFS extends AbstractHadoopProcessor {
         List<PropertyDescriptor> props = new ArrayList<>(properties);
         props.add(new PropertyDescriptor.Builder()
                 .fromPropertyDescriptor(DIRECTORY)
-                .description("The parent HDFS directory to which files should be written")
+                .description("The parent HDFS directory to which files should be written. The directory will be created if it doesn't exist.")
                 .build());
         props.add(CONFLICT_RESOLUTION);
         props.add(BLOCK_SIZE);