HDFS-9439. Include status of closeAck into exception message in DataNode#run. (Xiao Chen via Yongjun Zhang)

This commit is contained in:
Yongjun Zhang 2015-11-19 14:20:33 -08:00
parent 747455a13b
commit 31dc5c650e
2 changed files with 4 additions and 1 deletions

View File

@ -1660,6 +1660,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8056. Decommissioned dead nodes should continue to be counted as dead
after NN restart. (mingma)
HDFS-9439. Include status of closeAck into exception message in DataNode#run.
(Xiao Chen via Yongjun Zhang)
OPTIMIZATIONS
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than

View File

@ -2241,7 +2241,7 @@ public void run() {
+ Arrays.asList(targets));
} else {
throw new IOException("Bad connect ack, targets="
+ Arrays.asList(targets));
+ Arrays.asList(targets) + " status=" + closeAck.getStatus());
}
}
} else {