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

(cherry picked from commit 31dc5c650e)
This commit is contained in:
Yongjun Zhang 2015-11-19 14:20:33 -08:00
parent 03c292efb7
commit 0664782025
2 changed files with 4 additions and 1 deletions

View File

@ -801,6 +801,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

@ -2251,7 +2251,7 @@ public class DataNode extends ReconfigurableBase
+ Arrays.asList(targets));
} else {
throw new IOException("Bad connect ack, targets="
+ Arrays.asList(targets));
+ Arrays.asList(targets) + " status=" + closeAck.getStatus());
}
}
} else {