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 <bbende@apache.org>
This commit is contained in:
Andrew Lim 2017-01-17 11:26:33 -05:00 committed by Bryan Bende
parent 3bb876eb83
commit ad98ac179f
No known key found for this signature in database
GPG Key ID: A0DDA9ED50711C39
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class PutHDFS extends AbstractHadoopProcessor {
List<PropertyDescriptor> props = new ArrayList<>(properties); List<PropertyDescriptor> props = new ArrayList<>(properties);
props.add(new PropertyDescriptor.Builder() props.add(new PropertyDescriptor.Builder()
.fromPropertyDescriptor(DIRECTORY) .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()); .build());
props.add(CONFLICT_RESOLUTION); props.add(CONFLICT_RESOLUTION);
props.add(BLOCK_SIZE); props.add(BLOCK_SIZE);