Author: dhruba
Date: Thu Feb 7 10:41:10 2008
New Revision: 619556
URL: http://svn.apache.org/viewvc?rev=619556&view=rev
Log:
HADOOP-2787. An application can set a configuration variable named
dfs.umask to set the umask that is used by DFS.
(Tsz Wo (Nicholas), SZE via dhruba)
Modified:
hadoop/core/trunk/CHANGES.txt
hadoop/core/trunk/src/java/org/apache/hadoop/fs/permission/FsPermission.java
Modified: hadoop/core/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=619556&r1=619555&r2=619556&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Thu Feb 7 10:41:10 2008
@@ -23,14 +23,23 @@
HADOOP-2779. Remove the references to HBase in the build.xml. (omalley)
- HADOOP-1188. fstime file is updated when a storage directory containing
- namespace image becomes inaccessible. (shv)
-
HADOOP-2194. dfs cat on a non-existent file throws FileNotFoundException.
(Mahadev Konar via dhruba)
HADOOP-2767. Fix for NetworkTopology erroneously skipping the last leaf
node on a rack. (Hairong Kuang and Mark Butler via dhruba)
+
+Release 0.16.1 - Unrelease
+
+ BUG FIXES
+
+ HADOOP-1188. fstime file is updated when a storage directory containing
+ namespace image becomes inaccessible. (shv)
+
+ HADOOP-2787. An application can set a configuration variable named
+ dfs.umask to set the umask that is used by DFS.
+ (Tsz Wo (Nicholas), SZE via dhruba)
+
Release 0.16.0 - 2008-02-07
Modified:
hadoop/core/trunk/src/java/org/apache/hadoop/fs/permission/FsPermission.java
URL:
http://svn.apache.org/viewvc/hadoop/core/trunk/src/java/org/apache/hadoop/fs/permission/FsPermission.java?rev=619556&r1=619555&r2=619556&view=diff
==============================================================================
---
hadoop/core/trunk/src/java/org/apache/hadoop/fs/permission/FsPermission.java
(original)
+++
hadoop/core/trunk/src/java/org/apache/hadoop/fs/permission/FsPermission.java
Thu Feb 7 10:41:10 2008
@@ -153,7 +153,7 @@
}
/** umask property label */
- public static final String UMASK_LABEL = "hadoop.dfs.umask";
+ public static final String UMASK_LABEL = "dfs.umask";
public static final int DEFAULT_UMASK = 0022;
/** Get the user file creation mask (umask) */