This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new 41b47a5 NIFI-6922: Fix typo in fs.permissions.umask-mode Hadoop
property name in PutHDSF
41b47a5 is described below
commit 41b47a51560748514ccdf7a880463ef97100fdee
Author: Peter Turcsanyi <[email protected]>
AuthorDate: Tue Dec 3 14:37:56 2019 +0100
NIFI-6922: Fix typo in fs.permissions.umask-mode Hadoop property name in
PutHDSF
Signed-off-by: Pierre Villard <[email protected]>
This closes #3911.
---
.../src/main/java/org/apache/nifi/processors/hadoop/PutHDFS.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 116caba..37c306c 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
@@ -152,8 +152,8 @@ public class PutHDFS extends AbstractHadoopProcessor {
.name("Permissions umask")
.description(
"A umask represented as an octal number which determines
the permissions of files written to HDFS. " +
- "This overrides the Hadoop property
\"fs.permission.umask-mode\". " +
- "If this property and \"fs.permission.umask-mode\"
are undefined, the Hadoop default \"022\" will be used.")
+ "This overrides the Hadoop property
\"fs.permissions.umask-mode\". " +
+ "If this property and \"fs.permissions.umask-mode\"
are undefined, the Hadoop default \"022\" will be used.")
.addValidator(HadoopValidators.UMASK_VALIDATOR)
.build();