Merge -r 1190094:1190095 from trunk to branch. Fixes: HADOOP-7778.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0991b7560e
commit
14a2aa36d5
|
@ -690,6 +690,8 @@ Release 0.23.0 - Unreleased
|
|||
|
||||
HADOOP-7721. Add log before login in KerberosAuthenticationHandler. (jitendra)
|
||||
|
||||
HADOOP-7778. FindBugs warning in Token.getKind(). (tomwhite)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -119,7 +119,7 @@ public class Token<T extends TokenIdentifier> implements Writable {
|
|||
* Get the token kind
|
||||
* @return the kind of the token
|
||||
*/
|
||||
public Text getKind() {
|
||||
public synchronized Text getKind() {
|
||||
return kind;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue