YARN-3270. Fix node label expression not getting set in ApplicationSubmissionContext (Rohit Agarwal via wangda)

This commit is contained in:
Wangda Tan 2015-03-02 17:21:19 -08:00
parent c5eac9c6fe
commit abac6eb9d5
2 changed files with 4 additions and 0 deletions

View File

@ -683,6 +683,9 @@ Release 2.7.0 - UNRELEASED
all Schedulers even when using ParameterizedSchedulerTestBase.
(Anubhav Dhoot via devaraj)
YARN-3270. Fix node label expression not getting set in
ApplicationSubmissionContext (Rohit Agarwal via wangda)
Release 2.6.0 - 2014-11-18
INCOMPATIBLE CHANGES

View File

@ -155,6 +155,7 @@ public static ApplicationSubmissionContext newInstance(
context.setMaxAppAttempts(maxAppAttempts);
context.setApplicationType(applicationType);
context.setKeepContainersAcrossApplicationAttempts(keepContainers);
context.setNodeLabelExpression(appLabelExpression);
context.setAMContainerResourceRequest(resourceRequest);
return context;
}