This is an automated email from the ASF dual-hosted git repository.
ebadger pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push:
new af389d9 HADOOP-17342. Creating a token identifier should not do
kerberos name resolution. Contributed by Jim Brennan.
af389d9 is described below
commit af389d989770c4218c24e640f572bc7492f7d4b3
Author: Eric Badger <[email protected]>
AuthorDate: Thu Nov 5 21:46:14 2020 +0000
HADOOP-17342. Creating a token identifier should not do kerberos name
resolution. Contributed by Jim Brennan.
---
.../security/token/delegation/AbstractDelegationTokenIdentifier.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenIdentifier.java
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenIdentifier.java
index 72d2d45..3f27e45 100644
---
a/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenIdentifier.java
+++
b/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/security/token/delegation/AbstractDelegationTokenIdentifier.java
@@ -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) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]