Skip to content

Commit af1819a

Browse files
committed
Always return true when directory permission check
1 parent 2603da5 commit af1819a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/embulk/output/sftp/provider/sftp/SftpFileObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ protected SftpFileObject(final AbstractFileName name, final SftpFileSystem fileS
3939
@Override
4040
protected boolean doIsWriteable() throws Exception
4141
{
42-
return getPermissions(true).isWritable();
42+
return true;
4343
}
4444
}

0 commit comments

Comments
 (0)