Skip to content

Commit

Permalink
YARN-3859. LeafQueue doesn't print user properly for application add.
Browse files Browse the repository at this point in the history
Contributed by Varun Saxena.
  • Loading branch information
Devaraj K committed Jun 28, 2015
1 parent 79ed0f9 commit b543d1a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions hadoop-yarn-project/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,8 @@ private synchronized void addApplicationAttempt(FiCaSchedulerApp application,

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() +
Expand Down

0 comments on commit b543d1a

Please sign in to comment.