YARN-2243. Order of arguments for Preconditions.checkNotNull() is wrong in

SchedulerApplicationAttempt ctor. Contributed by Devaraj K.
This commit is contained in:
Devaraj K 2014-12-12 12:34:43 +05:30
parent 0bd0229110
commit bda748ac3a
2 changed files with 4 additions and 1 deletions

View File

@ -217,6 +217,9 @@ Release 2.7.0 - UNRELEASED
YARN-2917. Fixed potential deadlock when system.exit is called in AsyncDispatcher
(Rohith Sharmaks via jianhe)
YARN-2243. Order of arguments for Preconditions.checkNotNull() is wrong in
SchedulerApplicationAttempt ctor. (devaraj)
Release 2.6.0 - 2014-11-18
INCOMPATIBLE CHANGES

View File

@ -125,7 +125,7 @@ public class SchedulerApplicationAttempt {
public SchedulerApplicationAttempt(ApplicationAttemptId applicationAttemptId,
String user, Queue queue, ActiveUsersManager activeUsersManager,
RMContext rmContext) {
Preconditions.checkNotNull("RMContext should not be null", rmContext);
Preconditions.checkNotNull(rmContext, "RMContext should not be null");
this.rmContext = rmContext;
this.appSchedulingInfo =
new AppSchedulingInfo(applicationAttemptId, user, queue,