Procházet zdrojové kódy

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)



git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@619556 13f79535-47bb-0310-9956-ffa450edef68

Dhruba Borthakur před 17 roky
rodič
revize
e1be6117da

+ 12 - 3
CHANGES.txt

@@ -23,15 +23,24 @@ Trunk (unreleased changes)
 
     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
 
   INCOMPATIBLE CHANGES

+ 1 - 1
src/java/org/apache/hadoop/fs/permission/FsPermission.java

@@ -153,7 +153,7 @@ public class FsPermission implements Writable {
   }
 
   /** 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) */