YARN-4302. SLS not able start due to NPE in SchedulerApplicationAttempt. Contributed by Bibin A Chundatt.

(cherry picked from commit c28e16b40c)
This commit is contained in:
Varun Vasudev 2015-10-27 20:56:00 +05:30 committed by Konstantin V Shvachko
parent eecc68d4d8
commit 6feef1b039
2 changed files with 4 additions and 1 deletions

View File

@ -926,7 +926,7 @@ public class ResourceSchedulerWrapper
@LimitedPrivate("yarn")
@Unstable
public Resource getClusterResource() {
return null;
return super.getClusterResource();
}
@Override

View File

@ -85,6 +85,9 @@ Release 2.7.4 - UNRELEASED
YARN-5543. ResourceManager SchedulingMonitor could potentially terminate the
preemption checker thread. (Min Shen, Jonathan Hung via shv).
YARN-4302. SLS not able start due to NPE in SchedulerApplicationAttempt
(Bibin A Chundatt via vvasudev)
Release 2.7.3 - 2016-08-25
INCOMPATIBLE CHANGES