git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1@1453670 13f79535-47bb-0310-9956-ffa450edef68
@@ -520,6 +520,9 @@ Release 1.2.0 - unreleased
MAPREDUCE-5028. Maps fail when io.sort.mb is set to high value.
(kkambatl via tucu)
+ HDFS-4544. Error in deleting blocks should not do check disk, for
+ all types of errors. (Arpit Agarwal via suresh)
+
Release 1.1.2 - Unreleased
INCOMPATIBLE CHANGES
@@ -1227,7 +1227,7 @@ public class DataNode extends Configured
}
data.invalidate(toDelete);
} catch(IOException e) {
- checkDiskError();
+ // Exceptions caught here are not expected to be disk-related.
throw e;
myMetrics.incrBlocksRemoved(toDelete.length);