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 <[email protected]> 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 <[email protected]> Authored: Tue Jan 17 11:26:33 2017 -0500 Committer: Bryan Bende <[email protected]> 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);
