@@ -214,6 +214,9 @@ Trunk (unreleased changes)
HADOOP-1930. Fix the blame for failed fetchs on the right host. (Arun C.
Murthy via omalley)
+ HADOOP-1948. Removed spurious error message during block crc upgrade.
+ (Raghu Angadi via dhruba)
+
IMPROVEMENTS
HADOOP-1908. Restructure data node code so that block sending and
@@ -480,7 +480,7 @@ class FSNamesystem implements FSConstants {
}
- if ( crcInfo.blockLen <= 0 ) {
+ if ( crcInfo.blockLen < 0 ) {
LOG.warn("blockCrcInfo(): " + block +
" could not be found in blocks for " + crcInfo.fileName);
return crcInfo;