svn merge -c 1483578 FIXES: YARN-690. RM exits on token cancel/renew problems (daryn via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1483579 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4069886102
commit
59a272eae6
|
@ -606,6 +606,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
|
||||
|
|
|
@ -241,6 +241,9 @@ public class DelegationTokenRenewer extends AbstractService {
|
|||
} 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) {
|
||||
|
|
Loading…
Reference in New Issue