Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
svn merge -c 1379537 FIXES: HADOOP-8727. Gracefully deprecate dfs.uma…
Browse files Browse the repository at this point in the history
…skmode in 2.x onwards (Harsh J via bobby)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1379544 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
revans2 committed Aug 31, 2012
1 parent f8210bb commit 4068f6f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hadoop-common-project/hadoop-common/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ Release 0.23.3 - UNRELEASED
HADOOP-8726. The Secrets in Credentials are not available to MR tasks
(daryn and Benoy Antony via bobby)

HADOOP-8727. Gracefully deprecate dfs.umaskmode in 2.x onwards (Harsh J
via bobby)

Release 0.23.2 - UNRELEASED

NEW FEATURES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2241,5 +2241,7 @@ private static void addDeprecatedKeys() {
new String[]{CommonConfigurationKeys.IO_NATIVE_LIB_AVAILABLE_KEY});
Configuration.addDeprecation("fs.default.name",
new String[]{CommonConfigurationKeys.FS_DEFAULT_NAME_KEY});
Configuration.addDeprecation("dfs.umaskmode",
new String[]{CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY});
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -849,4 +849,15 @@
</description>
</property>

<property>
<name>fs.permissions.umask-mode</name>
<value>022</value>
<description>
The umask used when creating files and directories.
Can be in octal or in symbolic. Examples are:
"022" (octal for u=rwx,g=r-x,o=r-x in symbolic),
or "u=rwx,g=rwx,o=" (symbolic for 007 in octal).
</description>
</property>

</configuration>

0 comments on commit 4068f6f

Please sign in to comment.