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:
parent
58e191f0c5
commit
3641f938f6
|
@ -684,6 +684,8 @@ Release 0.23.8 - UNRELEASED
|
||||||
YARN-363. Add webapps/proxy directory without which YARN proxy-server fails
|
YARN-363. Add webapps/proxy directory without which YARN proxy-server fails
|
||||||
when started in stand-alone mode. (Kenji Kikushima via vinodkv)
|
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
|
Release 0.23.7 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -241,6 +241,9 @@ public class DelegationTokenRenewer extends AbstractService {
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LOG.warn("Failed to cancel token " + tokenWithConf.token + " " +
|
LOG.warn("Failed to cancel token " + tokenWithConf.token + " " +
|
||||||
StringUtils.stringifyException(e));
|
StringUtils.stringifyException(e));
|
||||||
|
} catch (RuntimeException e) {
|
||||||
|
LOG.warn("Failed to cancel token " + tokenWithConf.token + " " +
|
||||||
|
StringUtils.stringifyException(e));
|
||||||
} catch (InterruptedException ie) {
|
} catch (InterruptedException ie) {
|
||||||
return;
|
return;
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
|
|
Loading…
Reference in New Issue