YARN-4387. Fix typo in FairScheduler log message. Contributed by Xin Wang.
(cherry picked from commit 28dfe721b8
)
This commit is contained in:
parent
ac0ddc4fec
commit
9e458c3e9e
|
@ -1012,6 +1012,8 @@ Release 2.8.0 - UNRELEASED
|
||||||
YARN-4298. Fix findbugs warnings in hadoop-yarn-common.
|
YARN-4298. Fix findbugs warnings in hadoop-yarn-common.
|
||||||
(Sunil G via aajisaka)
|
(Sunil G via aajisaka)
|
||||||
|
|
||||||
|
YARN-4387. Fix typo in FairScheduler log message. (Xin Wang via ozawa)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -500,7 +500,7 @@ public class FairScheduler extends
|
||||||
// containers on the RMNode (see SchedulerNode.releaseContainer()).
|
// containers on the RMNode (see SchedulerNode.releaseContainer()).
|
||||||
completedContainer(container, status, RMContainerEventType.KILL);
|
completedContainer(container, status, RMContainerEventType.KILL);
|
||||||
LOG.info("Killing container" + container +
|
LOG.info("Killing container" + container +
|
||||||
" (after waiting for premption for " +
|
" (after waiting for preemption for " +
|
||||||
(getClock().getTime() - time) + "ms)");
|
(getClock().getTime() - time) + "ms)");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue