Skip to content

Commit fea16af

Browse files
committed
HDFS-6356. Fix typo in DatanodeLayoutVersion. Contributed by Tulasi G.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1598408 13f79535-47bb-0310-9956-ffa450edef68
1 parent 59b2945 commit fea16af

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,8 @@ Release 2.5.0 - UNRELEASED
449449
HDFS-6416. Use Time#monotonicNow in OpenFileCtx and OpenFileCtxCatch to
450450
avoid system clock bugs (Abhiraj Butala via brandonli)
451451

452+
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
453+
452454
OPTIMIZATIONS
453455

454456
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)

hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DataNodeLayoutVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static boolean supports(final LayoutFeature f, final int lv) {
6262
* </ul>
6363
*/
6464
public static enum Feature implements LayoutFeature {
65-
FIRST_LAYOUT(-55, -53, "First datenode layout", false);
65+
FIRST_LAYOUT(-55, -53, "First datanode layout", false);
6666

6767
private final FeatureInfo info;
6868

0 commit comments

Comments
 (0)