YARN-4424. Fix deadlock in RMAppImpl. (Jian he via wangda)
(cherry picked from commit 7e4715186d31ac889fba26d453feedcebb11fc70) Conflicts: hadoop-yarn-project/CHANGES.txt (cherry picked from commit 7013f9d6cda88e72a839b1c55757615b55101beb) Conflicts: hadoop-yarn-project/CHANGES.txt
This commit is contained in:
parent
c4ae007fd4
commit
a4ba6c8525
@ -2000,6 +2000,8 @@ Release 2.6.3 - UNRELEASED
|
||||
YARN-4434. NodeManager Disk Checker parameter documentation is not correct.
|
||||
(Weiwei Yang via aajisaka)
|
||||
|
||||
YARN-4424. Fix deadlock in RMAppImpl. (Jian he via wangda)
|
||||
|
||||
Release 2.6.2 - 2015-10-28
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -490,21 +490,15 @@ public ApplicationSubmissionContext getApplicationSubmissionContext() {
|
||||
|
||||
@Override
|
||||
public FinalApplicationStatus getFinalApplicationStatus() {
|
||||
this.readLock.lock();
|
||||
try {
|
||||
// finish state is obtained based on the state machine's current state
|
||||
// as a fall-back in case the application has not been unregistered
|
||||
// ( or if the app never unregistered itself )
|
||||
// when the report is requested
|
||||
if (currentAttempt != null
|
||||
&& currentAttempt.getFinalApplicationStatus() != null) {
|
||||
return currentAttempt.getFinalApplicationStatus();
|
||||
}
|
||||
return
|
||||
createFinalApplicationStatus(this.stateMachine.getCurrentState());
|
||||
} finally {
|
||||
this.readLock.unlock();
|
||||
// finish state is obtained based on the state machine's current state
|
||||
// as a fall-back in case the application has not been unregistered
|
||||
// ( or if the app never unregistered itself )
|
||||
// when the report is requested
|
||||
if (currentAttempt != null
|
||||
&& currentAttempt.getFinalApplicationStatus() != null) {
|
||||
return currentAttempt.getFinalApplicationStatus();
|
||||
}
|
||||
return createFinalApplicationStatus(this.stateMachine.getCurrentState());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user