YARN-3875. FSSchedulerNode#reserveResource() doesn't print Application Id

properly in log. Contributed by Bibin A Chundatt.

(cherry picked from commit 37d7395773)
This commit is contained in:
Devaraj K 2015-07-02 10:20:31 +05:30
parent 0d94a293a8
commit e1ca886419
2 changed files with 9 additions and 5 deletions

View File

@ -538,6 +538,9 @@ Release 2.8.0 - UNRELEASED
YARN-3830. AbstractYarnScheduler.createReleaseCache may try to clean a null
attempt. (nijel via devaraj)
YARN-3875. FSSchedulerNode#reserveResource() doesn't print Application Id
properly in log. (Bibin A Chundatt via devaraj)
Release 2.7.2 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -68,12 +68,13 @@ public class FSSchedulerNode extends SchedulerNode {
" on node " + this);
}
LOG.info("Updated reserved container " +
container.getContainer().getId() + " on node " +
this + " for application " + application);
LOG.info("Updated reserved container " + container.getContainer().getId()
+ " on node " + this + " for application "
+ application.getApplicationId());
} else {
LOG.info("Reserved container " + container.getContainer().getId() +
" on node " + this + " for application " + application);
LOG.info("Reserved container " + container.getContainer().getId()
+ " on node " + this + " for application "
+ application.getApplicationId());
}
setReservedContainer(container);
this.reservedAppSchedulable = (FSAppAttempt) application;