NIFI-6922: Fix typo in fs.permissions.umask-mode Hadoop property name in PutHDSF

Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>

This closes #3911.
This commit is contained in:
Peter Turcsanyi 2019-12-03 14:37:56 +01:00 committed by Pierre Villard
parent 82b4fb0633
commit 41b47a5156
No known key found for this signature in database
GPG Key ID: BEE1599F0726E9CD
1 changed files with 2 additions and 2 deletions

View File

@ -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();