Revert "SPNEGO TLS verification"

This reverts commit 9db6e96db3.
This commit is contained in:
Akira Ajisaka 2020-05-13 17:15:46 +09:00
parent a7ea55e015
commit dfb094d581
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 0 additions and 8 deletions

View File

@ -144,7 +144,6 @@ public class WebHdfsFileSystem extends FileSystem
+ "/v" + VERSION; + "/v" + VERSION;
public static final String EZ_HEADER = "X-Hadoop-Accept-EZ"; public static final String EZ_HEADER = "X-Hadoop-Accept-EZ";
public static final String FEFINFO_HEADER = "X-Hadoop-feInfo"; public static final String FEFINFO_HEADER = "X-Hadoop-feInfo";
public static final String DFS_HTTP_POLICY_KEY = "dfs.http.policy";
/** /**
* Default connection factory may be overridden in tests to use smaller * Default connection factory may be overridden in tests to use smaller
@ -174,7 +173,6 @@ public class WebHdfsFileSystem extends FileSystem
private DFSOpsCountStatistics storageStatistics; private DFSOpsCountStatistics storageStatistics;
private KeyProvider testProvider; private KeyProvider testProvider;
private boolean isTLSKrb;
/** /**
* Return the protocol scheme for the FileSystem. * Return the protocol scheme for the FileSystem.
@ -236,7 +234,6 @@ public class WebHdfsFileSystem extends FileSystem
.newDefaultURLConnectionFactory(connectTimeout, readTimeout, conf); .newDefaultURLConnectionFactory(connectTimeout, readTimeout, conf);
} }
this.isTLSKrb = "HTTPS_ONLY".equals(conf.get(DFS_HTTP_POLICY_KEY));
ugi = UserGroupInformation.getCurrentUser(); ugi = UserGroupInformation.getCurrentUser();
this.uri = URI.create(uri.getScheme() + "://" + uri.getAuthority()); this.uri = URI.create(uri.getScheme() + "://" + uri.getAuthority());
@ -694,11 +691,6 @@ public class WebHdfsFileSystem extends FileSystem
//redirect hostname and port //redirect hostname and port
redirectHost = null; redirectHost = null;
if (url.getProtocol().equals(getTransportScheme()) &&
UserGroupInformation.isSecurityEnabled() &&
isTLSKrb) {
throw new IOException("Access denied: dfs.http.policy is HTTPS_ONLY.");
}
// resolve redirects for a DN operation unless already resolved // resolve redirects for a DN operation unless already resolved
if (op.getRedirect() && !redirected) { if (op.getRedirect() && !redirected) {