HADOOP-17342. Creating a token identifier should not do kerberos name
resolution. Contributed by Jim Brennan.
This commit is contained in:
parent
638f1fc2b6
commit
af389d9897
|
@ -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