HADOOP-17342. Creating a token identifier should not do kerberos name

resolution. Contributed by Jim Brennan.
This commit is contained in:
Eric Badger 2020-11-05 21:46:14 +00:00
parent 638f1fc2b6
commit af389d9897
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ extends TokenIdentifier {
private int masterKeyId = 0;
public AbstractDelegationTokenIdentifier() {
this(new Text(), new Text(), new Text());
this(null, null, null);
}
public AbstractDelegationTokenIdentifier(Text owner, Text renewer, Text realUser) {