YARN-3203. Correct a log message in AuxServices. Contributed by Brahma Reddy Battula.
(cherry picked from commit 447bd7b5a6
)
This commit is contained in:
parent
eee89bd18c
commit
fd8f7e2c7d
|
@ -259,6 +259,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
YARN-3182. Cleanup switch statement in ApplicationMasterLauncher#handle().
|
YARN-3182. Cleanup switch statement in ApplicationMasterLauncher#handle().
|
||||||
(Ray Chiang via ozawa)
|
(Ray Chiang via ozawa)
|
||||||
|
|
||||||
|
YARN-3203. Correct a log message in AuxServices. (Brahma Reddy Battula
|
||||||
|
via ozawa)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
||||||
|
|
|
@ -128,7 +128,7 @@ public class AuxServices extends AbstractService
|
||||||
// TODO better use s.getName()?
|
// TODO better use s.getName()?
|
||||||
if(!sName.equals(s.getName())) {
|
if(!sName.equals(s.getName())) {
|
||||||
LOG.warn("The Auxilurary Service named '"+sName+"' in the "
|
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 "
|
+"a name of '"+s.getName()+"'. Because these are "
|
||||||
+"not the same tools trying to send ServiceData and read "
|
+"not the same tools trying to send ServiceData and read "
|
||||||
+"Service Meta Data may have issues unless the refer to "
|
+"Service Meta Data may have issues unless the refer to "
|
||||||
|
|
Loading…
Reference in New Issue