YARN-3604. Fixed ZKRMStateStore#removeApplication to also disable watch. Contributed Zhihai Xu

(cherry picked from commit d0b73287c2)
This commit is contained in:
Jian He 2015-05-08 15:10:38 -07:00
parent 8d07116266
commit 5a1c2fed34
2 changed files with 5 additions and 2 deletions

View File

@ -323,6 +323,9 @@ Release 2.8.0 - UNRELEASED
YARN-3600. AM container link is broken (Naganarasimha G R via tgraves)
YARN-3604. Fixed ZKRMStateStore#removeApplication to also disable watch.
(zhihai xu via jianhe)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -827,8 +827,8 @@ public class ZKRMStateStore extends RMStateStore {
public synchronized void removeApplication(ApplicationId removeAppId)
throws Exception {
String appIdRemovePath = getNodePath(rmAppRoot, removeAppId.toString());
if (existsWithRetries(appIdRemovePath, true) != null) {
deleteWithRetries(appIdRemovePath, true);
if (existsWithRetries(appIdRemovePath, false) != null) {
deleteWithRetries(appIdRemovePath, false);
}
}