YARN-7698. A misleading variable's name in ApplicationAttemptEventDispatcher

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
Jinjiang Ling 2018-01-30 00:00:57 +09:00 committed by Akira Ajisaka
parent b63dcd583f
commit 3400d0c535
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 4 additions and 4 deletions

View File

@ -947,11 +947,11 @@ public class ResourceManager extends CompositeService implements Recoverable {
@Override
public void handle(RMAppAttemptEvent event) {
ApplicationAttemptId appAttemptID = event.getApplicationAttemptId();
ApplicationId appAttemptId = appAttemptID.getApplicationId();
RMApp rmApp = this.rmContext.getRMApps().get(appAttemptId);
ApplicationAttemptId appAttemptId = event.getApplicationAttemptId();
ApplicationId appId = appAttemptId.getApplicationId();
RMApp rmApp = this.rmContext.getRMApps().get(appId);
if (rmApp != null) {
RMAppAttempt rmAppAttempt = rmApp.getRMAppAttempt(appAttemptID);
RMAppAttempt rmAppAttempt = rmApp.getRMAppAttempt(appAttemptId);
if (rmAppAttempt != null) {
try {
rmAppAttempt.handle(event);