Parcourir la source

YARN-1613. Fixed the typo with the configuration name YARN_HISTORY_SERVICE_ENABLED. Contributed by Akira Ajisaka.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1561461 13f79535-47bb-0310-9956-ffa450edef68
Vinod Kumar Vavilapalli il y a 11 ans
Parent
commit
9875656581

+ 3 - 0
hadoop-yarn-project/CHANGES.txt

@@ -109,6 +109,9 @@ Trunk - Unreleased
     YARN-1625. Fixed RAT warnings after YARN-321 merge. (Shinichi Yamashita via
     vinodkv)
 
+    YARN-1613. Fixed the typo with the configuration name
+    YARN_HISTORY_SERVICE_ENABLED. (Akira Ajisaka via vinodkv)
+
 Release 2.4.0 - UNRELEASED
 
   INCOMPATIBLE CHANGES

+ 1 - 1
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/java/org/apache/hadoop/yarn/conf/YarnConfiguration.java

@@ -950,7 +950,7 @@ public class YarnConfiguration extends Configuration {
 
   /** The setting that controls whether history-service is enabled or not.. */
   public static final String YARN_HISTORY_SERVICE_ENABLED = AHS_PREFIX
-      + ".enabled";
+      + "enabled";
   public static final boolean DEFAULT_YARN_HISTORY_SERVICE_ENABLED = false;
 
   /** URI for FileSystemApplicationHistoryStore */