YARN-5672. FairScheduler: Wrong queue name in log when adding application. (Wilfred Spiegelenburg via kasha)
This commit is contained in:
parent
6e130c308c
commit
0da54e8848
@ -668,11 +668,12 @@ protected synchronized void addApplication(ApplicationId applicationId,
|
||||
queue.getMetrics().submitApp(user);
|
||||
|
||||
LOG.info("Accepted application " + applicationId + " from user: " + user
|
||||
+ ", in queue: " + queueName + ", currently num of applications: "
|
||||
+ applications.size());
|
||||
+ ", in queue: " + queue.getName()
|
||||
+ ", currently num of applications: " + applications.size());
|
||||
if (isAppRecovering) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug(applicationId + " is recovering. Skip notifying APP_ACCEPTED");
|
||||
LOG.debug(applicationId
|
||||
+ " is recovering. Skip notifying APP_ACCEPTED");
|
||||
}
|
||||
} else {
|
||||
rmContext.getDispatcher().getEventHandler()
|
||||
|
Loading…
Reference in New Issue
Block a user