YARN-690. RM exits on token cancel/renew problems (daryn via bobby)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1483578 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Joseph Evans 2013-05-16 21:41:49 +00:00
parent 58e191f0c5
commit 3641f938f6
2 changed files with 5 additions and 0 deletions

View File

@ -684,6 +684,8 @@ Release 0.23.8 - UNRELEASED
YARN-363. Add webapps/proxy directory without which YARN proxy-server fails
when started in stand-alone mode. (Kenji Kikushima via vinodkv)
YARN-690. RM exits on token cancel/renew problems (daryn via bobby)
Release 0.23.7 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -241,6 +241,9 @@ public Void run() throws Exception {
} catch (IOException e) {
LOG.warn("Failed to cancel token " + tokenWithConf.token + " " +
StringUtils.stringifyException(e));
} catch (RuntimeException e) {
LOG.warn("Failed to cancel token " + tokenWithConf.token + " " +
StringUtils.stringifyException(e));
} catch (InterruptedException ie) {
return;
} catch (Throwable t) {