[ 
https://issues.apache.org/jira/browse/VFS-351?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13039103#comment-13039103
 ] 

John Bäckstrand edited comment on VFS-351 at 5/25/11 1:06 PM:
--------------------------------------------------------------

One-line patch attached:

Index: 
core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java
===================================================================
--- 
core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java    
    (revision 1127468)
+++ 
core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileSystem.java    
    (working copy)
@@ -142,7 +142,7 @@
                     catch (SftpException e)
                     {
                         throw new 
FileSystemException("vfs.provider.sftp/change-work-directory.error",
-                            workingDirectory);
+                            workingDirectory, e);
                     }
                 }
             }

      was (Author: sandos):
    One-line patch
  
> Small patch to not swallow SFTP exception from JSCH 
> ----------------------------------------------------
>
>                 Key: VFS-351
>                 URL: https://issues.apache.org/jira/browse/VFS-351
>             Project: Commons VFS
>          Issue Type: Bug
>            Reporter: John Bäckstrand
>            Priority: Trivial
>              Labels: sftp
>         Attachments: vfscdpatch.diff
>
>
> A customer had a stacktrace where the end of it looked something like this:
> Caused by: org.apache.commons.vfs2.FileSystemException: Could not determine 
> the type of file "***".
>         at 
> org.apache.commons.vfs2.provider.AbstractFileObject.getType(AbstractFileObject.java:506)
>         at 
> org.apache.commons.vfs2.provider.sftp.SftpFileObject.refresh(SftpFileObject.java:92)
>         ... 27 more
> Caused by: org.apache.commons.vfs2.FileSystemException: Could not change to 
> work directory "/".
>         at 
> org.apache.commons.vfs2.provider.sftp.SftpFileSystem.getChannel(SftpFileSystem.java:144)
>         at 
> org.apache.commons.vfs2.provider.sftp.SftpFileObject.statSelf(SftpFileObject.java:152)
>         at 
> org.apache.commons.vfs2.provider.sftp.SftpFileObject.doGetType(SftpFileObject.java:115)
>         at 
> org.apache.commons.vfs2.provider.AbstractFileObject.getType(AbstractFileObject.java:497)
> But SftpFileSystem actually got an exception from JSch that it did not set as 
> cause for the newly created exception, making debugging harder.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to