Author: arp
Date: Thu May 1 21:19:58 2014
New Revision: 1591784
URL: http://svn.apache.org/r1591784
Log:
HADOOP-10562. Undo previous commit.
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1591784&r1=1591783&r2=1591784&view=diff
==============================================================================
---
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
(original)
+++
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
Thu May 1 21:19:58 2014
@@ -105,10 +105,6 @@ Release 2.5.0 - UNRELEASED
HADOOP-10543. RemoteException's unwrapRemoteException method failed for
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
INCOMPATIBLE CHANGES
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java?rev=1591784&r1=1591783&r2=1591784&view=diff
==============================================================================
---
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java
(original)
+++
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenSecretManager.java
Thu May 1 21:19:58 2014
@@ -560,7 +560,8 @@ extends AbstractDelegationTokenIdentifie
}
}
} catch (Throwable t) {
- LOG.error("ExpiredTokenRemover thread received unexpected exception",
t);
+ LOG.error("ExpiredTokenRemover thread received unexpected exception. "
+ + t);
Runtime.getRuntime().exit(-1);
}
}