HDFS-9439. Include status of closeAck into exception message in DataNode#run. (Xiao Chen via Yongjun Zhang)
This commit is contained in:
parent
747455a13b
commit
31dc5c650e
|
@ -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
|
||||
|
|
|
@ -2241,7 +2241,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 {
|
||||
|
|
Loading…
Reference in New Issue