@Override
 public synchronized void removeApplicationState(ApplicationState appState) throws Exception {
   String appId = appState.getAppId().toString();
   Path nodeRemovePath = getAppDir(rmAppRoot, appId);
   LOG.info("Removing info for app: " + appId + " at: " + nodeRemovePath);
   deleteFile(nodeRemovePath);
 }