git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20-security@1153317 13f79535-47bb-0310-9956-ffa450edef68
@@ -24,6 +24,9 @@ Release 0.20.205.0 - unreleased
HDFS-2053. Bug in INodeDirectory#computeContentSummary warning
(Michael Noll via eli)
+ HDFS-2117. DiskChecker#mkdirsWithExistsAndPermissionCheck may
+ return true even when the dir is not created. (eli)
+
IMPROVEMENTS
MAPREDUCE-7343. Make the number of warnings accepted by test-patch
@@ -138,6 +138,8 @@ public class DiskChecker {
if (created) {
localFS.setPermission(dir, expected);
return true;
+ } else {
+ return false;
}