YARN-2343. Improve NMToken expire exception message. Contributed by Li Lu
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1615270 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ba3f89714
commit
a41c314373
|
@ -80,6 +80,8 @@ Release 2.6.0 - UNRELEASED
|
|||
YARN-1994. Expose YARN/MR endpoints on multiple interfaces. (Craig Welch,
|
||||
Milan Potocnik, Arpit Agarwal via xgong)
|
||||
|
||||
YARN-2343. Improve NMToken expire exception message. (Li Lu via jianhe)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -514,6 +514,8 @@ public class ContainerManagerImpl extends CompositeService implements
|
|||
messageBuilder.append("\nThis token is expired. current time is ")
|
||||
.append(System.currentTimeMillis()).append(" found ")
|
||||
.append(containerTokenIdentifier.getExpiryTimeStamp());
|
||||
messageBuilder.append("\nNote: System times on machines may be out of sync.")
|
||||
.append(" Check system time and time zones.");
|
||||
}
|
||||
if (unauthorized) {
|
||||
String msg = messageBuilder.toString();
|
||||
|
|
Loading…
Reference in New Issue