mirror of https://github.com/apache/nifi.git
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:
parent
3bb876eb83
commit
ad98ac179f
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue