File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
src/main/java/org/embulk/output/sftp Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ 0.0.8 (2016-09-26)
2+ ==================
3+ - Fix: Use second as timetout setting instead of milli second
4+ - https://github.com/civitaspo/embulk-output-sftp/pull/22
5+ - Fix: Fix CI failure only with Java7
6+ - https://github.com/civitaspo/embulk-output-sftp/pull/21
7+ - Fix: Format code that were warned by ` ./gradlew checkstyle ` command
8+ - https://github.com/civitaspo/embulk-output-sftp/pull/23
9+
1100.0.7 (2016-03-22)
211==================
312- Fix: Plugin throws ClassNotFoundException with EmbulkEmbed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ configurations {
1515 provided
1616}
1717
18- version = " 0.0.7 "
18+ version = " 0.0.8 "
1919sourceCompatibility = 1.7
2020targetCompatibility = 1.7
2121
Original file line number Diff line number Diff line change @@ -260,7 +260,8 @@ interface Retriable<T>
260260 public T execute () throws Exception ;
261261 }
262262
263- private <T > T withConnectionRetry (final Retriable <T > op ) throws Exception
263+ private <T > T withConnectionRetry (final Retriable <T > op )
264+ throws Exception
264265 {
265266 int count = 0 ;
266267 while (true ) {
You can’t perform that action at this time.
0 commit comments