HADOOP-13601. Fix a log message typo in AbstractDelegationTokenSecretManager. Contributed by Mehran Hassani.

(cherry picked from commit e80386d69d)
This commit is contained in:
Mingliang Liu 2016-09-20 13:19:44 -07:00
parent 2a9f809c96
commit f98afb3bee
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ extends AbstractDelegationTokenIdentifier>
DataInputStream in = new DataInputStream(buf); DataInputStream in = new DataInputStream(buf);
TokenIdent id = createIdentifier(); TokenIdent id = createIdentifier();
id.readFields(in); id.readFields(in);
LOG.info("Token cancelation requested for identifier: "+id); LOG.info("Token cancellation requested for identifier: " + id);
if (id.getUser() == null) { if (id.getUser() == null) {
throw new InvalidToken("Token with no owner"); throw new InvalidToken("Token with no owner");