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