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:14:58 UTC

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

Yuhao Bi created HADOOP-13765:
---------------------------------

             Summary: 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
        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