HADOOP-10562. Undo previous commit.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1591785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
94381e82ab
commit
13bba8ceac
|
@ -431,10 +431,6 @@ Release 2.5.0 - UNRELEASED
|
||||||
HADOOP-10543. RemoteException's unwrapRemoteException method failed for
|
HADOOP-10543. RemoteException's unwrapRemoteException method failed for
|
||||||
PathIOException. (Yongjun Zhang via atm)
|
PathIOException. (Yongjun Zhang via atm)
|
||||||
|
|
||||||
HADOOP-10562. Namenode exits on exception without printing stack trace
|
|
||||||
in AbstractDelegationTokenSecretManager. (Suresh Srinivas via Arpit
|
|
||||||
Agarwal)
|
|
||||||
|
|
||||||
Release 2.4.1 - UNRELEASED
|
Release 2.4.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -560,7 +560,8 @@ extends AbstractDelegationTokenIdentifier>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
LOG.error("ExpiredTokenRemover thread received unexpected exception", t);
|
LOG.error("ExpiredTokenRemover thread received unexpected exception. "
|
||||||
|
+ t);
|
||||||
Runtime.getRuntime().exit(-1);
|
Runtime.getRuntime().exit(-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue