HDFS-6356. Merged from r1598408. Fix typo in DatanodeLayoutVersion. Contributed by Tulasi G.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1598409 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e4346e9877
commit
72aaab255d
|
@ -132,6 +132,8 @@ Release 2.5.0 - UNRELEASED
|
|||
HDFS-6416. Use Time#monotonicNow in OpenFileCtx and OpenFileCtxCatch to
|
||||
avoid system clock bugs (Abhiraj Butala via brandonli)
|
||||
|
||||
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)
|
||||
|
|
|
@ -62,7 +62,7 @@ public class DataNodeLayoutVersion {
|
|||
* </ul>
|
||||
*/
|
||||
public static enum Feature implements LayoutFeature {
|
||||
FIRST_LAYOUT(-55, -53, "First datenode layout", false);
|
||||
FIRST_LAYOUT(-55, -53, "First datanode layout", false);
|
||||
|
||||
private final FeatureInfo info;
|
||||
|
||||
|
|
Loading…
Reference in New Issue