HADOOP-17342. Creating a token identifier should not do kerberos name
resolution. Contributed by Jim Brennan.
(cherry picked from commit af389d9897
)
This commit is contained in:
parent
41d58d190d
commit
c6fee0a2c8
|
@ -49,7 +49,7 @@ extends TokenIdentifier {
|
||||||
private int masterKeyId = 0;
|
private int masterKeyId = 0;
|
||||||
|
|
||||||
public AbstractDelegationTokenIdentifier() {
|
public AbstractDelegationTokenIdentifier() {
|
||||||
this(new Text(), new Text(), new Text());
|
this(null, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public AbstractDelegationTokenIdentifier(Text owner, Text renewer, Text realUser) {
|
public AbstractDelegationTokenIdentifier(Text owner, Text renewer, Text realUser) {
|
||||||
|
|
Loading…
Reference in New Issue