You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Gera Shegalov (JIRA)" <ji...@apache.org> on 2015/02/21 04:14:12 UTC

[jira] [Created] (HADOOP-11618) DelegateToFileSystem always uses default FS's default port

Gera Shegalov created HADOOP-11618:
--------------------------------------

             Summary: DelegateToFileSystem always uses default FS's default port 
                 Key: HADOOP-11618
                 URL: https://issues.apache.org/jira/browse/HADOOP-11618
             Project: Hadoop Common
          Issue Type: Bug
    Affects Versions: 2.6.0
            Reporter: Gera Shegalov


DelegateToFileSystem constructor has the following code:

{code}
    super(theUri, supportedScheme, authorityRequired,
        FileSystem.getDefaultUri(conf).getPort());
{code}

The default port should be taken from theFsImpl instead.

{code}
    super(theUri, supportedScheme, authorityRequired,
        theFsImpl.getDefaultPort());
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)