Skip to content

Commit

Permalink
Merge pull request #24 from civitaspo/v0.0.8
Browse files Browse the repository at this point in the history
V0.0.8
  • Loading branch information
civitaspo authored Sep 26, 2016
2 parents a6a6b5b + cbc7728 commit 7834176
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.0.8 (2016-09-26)
==================
- Fix: Use second as timetout setting instead of milli second
- https://github.com/civitaspo/embulk-output-sftp/pull/22
- Fix: Fix CI failure only with Java7
- https://github.com/civitaspo/embulk-output-sftp/pull/21
- Fix: Format code that were warned by `./gradlew checkstyle` command
- https://github.com/civitaspo/embulk-output-sftp/pull/23

0.0.7 (2016-03-22)
==================
- Fix: Plugin throws ClassNotFoundException with EmbulkEmbed
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ configurations {
provided
}

version = "0.0.7"
version = "0.0.8"
sourceCompatibility = 1.7
targetCompatibility = 1.7

Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/embulk/output/sftp/SftpFileOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ interface Retriable<T>
public T execute() throws Exception;
}

private <T> T withConnectionRetry(final Retriable<T> op) throws Exception
private <T> T withConnectionRetry(final Retriable<T> op)
throws Exception
{
int count = 0;
while (true) {
Expand Down

0 comments on commit 7834176

Please sign in to comment.