浏览代码

HADOOP-3851. Fix spelling mistake in FSNamesystemMetrics. (Steve Loughran
via omalley)


git-svn-id: https://svn.apache.org/repos/asf/hadoop/core/trunk@685325 13f79535-47bb-0310-9956-ffa450edef68

Owen O'Malley 17 年之前
父节点
当前提交
cf277c8440
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 3 0
      CHANGES.txt
  2. 1 1
      src/hdfs/org/apache/hadoop/hdfs/server/namenode/metrics/FSNamesystemMetrics.java

+ 3 - 0
CHANGES.txt

@@ -169,6 +169,9 @@ Trunk (unreleased changes)
     HADOOP-3368. Remove common-logging.properties from conf. (Steve Loughran 
     via omalley)
 
+    HADOOP-3851. Fix spelling mistake in FSNamesystemMetrics. (Steve Loughran 
+    via omalley)
+
   OPTIMIZATIONS
 
     HADOOP-3556. Removed lock contention in MD5Hash by changing the 

+ 1 - 1
src/hdfs/org/apache/hadoop/hdfs/server/namenode/metrics/FSNamesystemMetrics.java

@@ -57,7 +57,7 @@ public class FSNamesystemMetrics implements Updater {
     metricsRecord = MetricsUtil.createRecord(metricsContext, "FSNamesystem");
     metricsRecord.setTag("sessionId", sessionId);
     metricsContext.registerUpdater(this);
-    log.info("Initializing FSNamesystemMeterics using context object:" +
+    log.info("Initializing FSNamesystemMetrics using context object:" +
               metricsContext.getClass().getName());
   }