You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Yuhao Bi (JIRA)" <ji...@apache.org> on 2016/10/27 08:19:58 UTC

[jira] [Updated] (HADOOP-13765) Return HomeDirectory if possible in SFTPFileSystem

     [ https://issues.apache.org/jira/browse/HADOOP-13765?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yuhao Bi updated HADOOP-13765:
------------------------------
    Description: 
In SFTPFileSystem#getHomeDirectory(), we disconnect the ChannelSftp in finally block.
If we get the homeDir Path successfully but got an IOE in the finally block we will return the null result.
Maybe we can simply ignore this IOE and just return the result we have got.
Related codes are shown below.
{code:title=SFTPFileSystem.java|borderStyle=solid}
  public Path getHomeDirectory() {
    ChannelSftp channel = null;
    try {
      channel = connect();
      Path homeDir = new Path(channel.pwd());
      return homeDir;
    } catch (Exception ioe) {
      return null;
    } finally {
      try {
        disconnect(channel);
      } catch (IOException ioe) {
        //May be we can just ignore this IOE and do not return null here.
        return null;
      }
    }
  }
{code}

  was:
In SFTPFileSystem#getHomeDirectory(), we disconnect the ChannelSftp in finally block.
If we get the homeDir Path successfully but got an IOE in the finally block we will return the null result.
Maybe we can simply ignore this IOE and just return the result we have got.Related codes are shown below.
{code:title=SFTPFileSystem.java|borderStyle=solid}
  public Path getHomeDirectory() {
    ChannelSftp channel = null;
    try {
      channel = connect();
      Path homeDir = new Path(channel.pwd());
      return homeDir;
    } catch (Exception ioe) {
      return null;
    } finally {
      try {
        disconnect(channel);
      } catch (IOException ioe) {
        //May be we can just ignore this IOE
        return null;
      }
    }
  }
{code}


> Return HomeDirectory if possible in SFTPFileSystem
> --------------------------------------------------
>
>                 Key: HADOOP-13765
>                 URL: https://issues.apache.org/jira/browse/HADOOP-13765
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: fs
>            Reporter: Yuhao Bi
>
> In SFTPFileSystem#getHomeDirectory(), we disconnect the ChannelSftp in finally block.
> If we get the homeDir Path successfully but got an IOE in the finally block we will return the null result.
> Maybe we can simply ignore this IOE and just return the result we have got.
> Related codes are shown below.
> {code:title=SFTPFileSystem.java|borderStyle=solid}
>   public Path getHomeDirectory() {
>     ChannelSftp channel = null;
>     try {
>       channel = connect();
>       Path homeDir = new Path(channel.pwd());
>       return homeDir;
>     } catch (Exception ioe) {
>       return null;
>     } finally {
>       try {
>         disconnect(channel);
>       } catch (IOException ioe) {
>         //May be we can just ignore this IOE and do not return null here.
>         return null;
>       }
>     }
>   }
> {code}



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

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org