Просмотр исходного кода

YARN-3203. Correct a log message in AuxServices. Contributed by Brahma Reddy Battula.

Tsuyoshi Ozawa 10 лет назад
Родитель
Сommit
da1dfed619

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

@@ -295,6 +295,9 @@ Release 2.7.0 - UNRELEASED
     YARN-3182. Cleanup switch statement in ApplicationMasterLauncher#handle().
     (Ray Chiang via ozawa)
 
+    YARN-3203. Correct a log message in AuxServices. (Brahma Reddy Battula 
+    via ozawa)
+
   OPTIMIZATIONS
 
     YARN-2990. FairScheduler's delay-scheduling always waits for node-local and 

+ 1 - 1
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/containermanager/AuxServices.java

@@ -128,7 +128,7 @@ public class AuxServices extends AbstractService
         // TODO better use s.getName()?
         if(!sName.equals(s.getName())) {
           LOG.warn("The Auxilurary Service named '"+sName+"' in the "
-                  +"configuration is for class "+sClass+" which has "
+                  +"configuration is for "+sClass+" which has "
                   +"a name of '"+s.getName()+"'. Because these are "
                   +"not the same tools trying to send ServiceData and read "
                   +"Service Meta Data may have issues unless the refer to "