Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error handling #9

Merged
merged 3 commits into from
Mar 4, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Return TaskReport when close() is called
sakama committed Mar 4, 2016
commit 9141fc2aa0ceef0fa3d4e5010716e46bf1ad7b1b
2 changes: 1 addition & 1 deletion src/main/java/org/embulk/output/sftp/SftpFileOutput.java
Original file line number Diff line number Diff line change
@@ -164,7 +164,7 @@ public void abort()
@Override
public TaskReport commit()
{
return null;
return Exec.newTaskReport();
}