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