YARN-586. Fixed a typo in ApplicationSubmissionContext#setApplicationId. Contributed by Zhijie Shen.
svn merge --ignore-ancestry -c 1470068 ../../trunk/ git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1470069 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0a4857fef3
commit
6c37becf87
|
@ -90,6 +90,9 @@ Release 2.0.5-beta - UNRELEASED
|
||||||
YARN-514. Delayed store operations should not result in RM unavailability
|
YARN-514. Delayed store operations should not result in RM unavailability
|
||||||
for app submission (Zhijie Shen via bikas)
|
for app submission (Zhijie Shen via bikas)
|
||||||
|
|
||||||
|
YARN-586. Fixed a typo in ApplicationSubmissionContext#setApplicationId.
|
||||||
|
(Zhijie Shen via vinodkv)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
|
|
@ -58,12 +58,12 @@ public interface ApplicationSubmissionContext {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the <code>ApplicationId</code> of the submitted application.
|
* Set the <code>ApplicationId</code> of the submitted application.
|
||||||
* @param appplicationId <code>ApplicationId</code> of the submitted
|
* @param applicationId <code>ApplicationId</code> of the submitted
|
||||||
* application
|
* application
|
||||||
*/
|
*/
|
||||||
@Public
|
@Public
|
||||||
@Stable
|
@Stable
|
||||||
public void setApplicationId(ApplicationId appplicationId);
|
public void setApplicationId(ApplicationId applicationId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the application <em>name</em>.
|
* Get the application <em>name</em>.
|
||||||
|
|
Loading…
Reference in New Issue