YARN-3859. LeafQueue doesn't print user properly for application add.
Contributed by Varun Saxena.
(cherry picked from commit b543d1a390
)
This commit is contained in:
parent
1a8d162bc4
commit
e163c1e0da
|
@ -514,6 +514,9 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-2871. TestRMRestart#testRMRestartGetApplicationList sometime fails in trunk.
|
||||
(zhihai xu via xgong)
|
||||
|
||||
YARN-3859. LeafQueue doesn't print user properly for application add.
|
||||
(Varun Saxena via devaraj)
|
||||
|
||||
Release 2.7.1 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -676,7 +676,8 @@ public class LeafQueue extends AbstractCSQueue {
|
|||
|
||||
LOG.info("Application added -" +
|
||||
" appId: " + application.getApplicationId() +
|
||||
" user: " + user + "," + " leaf-queue: " + getQueueName() +
|
||||
" user: " + application.getUser() + "," +
|
||||
" leaf-queue: " + getQueueName() +
|
||||
" #user-pending-applications: " + user.getPendingApplications() +
|
||||
" #user-active-applications: " + user.getActiveApplications() +
|
||||
" #queue-pending-applications: " + getNumPendingApplications() +
|
||||
|
|
Loading…
Reference in New Issue