Quellcode durchsuchen

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

(cherry picked from commit 5dba54596a1587e0ba5f9f02f40483e597b0df64)
Kai Zheng vor 7 Jahren
Ursprung
Commit
b7739b468e

+ 1 - 1
hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/DFSStripedOutputStream.java

@@ -390,7 +390,7 @@ public class DFSStripedOutputStream extends DFSOutputStream
     }
     }
     if (failCount > (numAllBlocks - numDataBlocks)) {
     if (failCount > (numAllBlocks - numDataBlocks)) {
       throw new IOException("Failed: the number of failed blocks = "
       throw new IOException("Failed: the number of failed blocks = "
-          + failCount + " > the number of data blocks = "
+          + failCount + " > the number of parity blocks = "
           + (numAllBlocks - numDataBlocks));
           + (numAllBlocks - numDataBlocks));
     }
     }
     return newFailed;
     return newFailed;