HDFS-3629. Fix the typo in the error message about inconsistent storage layout version. Contributed by Brandon Li. (harsh)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1359905 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c37dcbde0
commit
3b5ea87502
|
@ -292,6 +292,9 @@ Branch-2 ( Unreleased changes )
|
|||
|
||||
HDFS-3568. fuse_dfs: add support for security. (Colin McCabe via atm)
|
||||
|
||||
HDFS-3629. Fix the typo in the error message about inconsistent
|
||||
storage layout version. (Brandon Li via harsh)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-2982. Startup performance suffers when there are many edit log
|
||||
|
|
|
@ -1076,7 +1076,7 @@ public class NNStorage extends Storage implements Closeable,
|
|||
}
|
||||
if (multipleLV) {
|
||||
throw new IOException(
|
||||
"Storage directories containe multiple layout versions: "
|
||||
"Storage directories contain multiple layout versions: "
|
||||
+ layoutVersions);
|
||||
}
|
||||
// If the storage directories are with the new layout version
|
||||
|
|
Loading…
Reference in New Issue