HDFS-11526. Fix confusing block recovery message. Contributed by Yiqun Lin.
This commit is contained in:
parent
e03d8ff488
commit
f731013c88
|
@ -152,9 +152,8 @@ public class BlockRecoveryWorker {
|
||||||
return;
|
return;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
++errorCount;
|
++errorCount;
|
||||||
InterDatanodeProtocol.LOG.warn(
|
InterDatanodeProtocol.LOG.warn("Failed to recover block (block="
|
||||||
"Failed to obtain replica info for block (=" + block
|
+ block + ", datanode=" + id + ")", e);
|
||||||
+ ") from datanode (=" + id + ")", e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue