HDFS-12388. A bad error message in DFSStripedOutputStream. Contributed by Huafeng Wang

This commit is contained in:
Kai Zheng 2017-09-05 17:46:07 +08:00
parent ed162b7aa0
commit 5dba54596a

View File

@ -390,7 +390,7 @@ private Set<StripedDataStreamer> checkStreamers() throws IOException {
}
if (failCount > (numAllBlocks - numDataBlocks)) {
throw new IOException("Failed: the number of failed blocks = "
+ failCount + " > the number of data blocks = "
+ failCount + " > the number of parity blocks = "
+ (numAllBlocks - numDataBlocks));
}
return newFailed;