git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1453548 13f79535-47bb-0310-9956-ffa450edef68
@@ -53,6 +53,9 @@ Release 0.23.7 - UNRELEASED
HDFS-4553. Webhdfs will NPE on some unexpected response codes (Daryn Sharp
via kihwal)
+ HDFS-4544. Error in deleting blocks should not do check disk, for
+ all types of errors. (Arpit Agarwal via suresh)
+
Release 0.23.6 - 2013-02-06
INCOMPATIBLE CHANGES
@@ -711,7 +711,7 @@ class BPOfferService implements Runnable {
// using global fsdataset
dn.data.invalidate(bcmd.getBlockPoolId(), toDelete);
} catch(IOException e) {
- dn.checkDiskError();
+ // Exceptions caught here are not expected to be disk-related.
throw e;
}
dn.metrics.incrBlocksRemoved(toDelete.length);