Skip to content

Commit 745c954

Browse files
committed
upgraded embulk versio 0.7.0
1 parent a51fb18 commit 745c954

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ subprojects {
2828
}
2929

3030
dependencies {
31-
compile "org.embulk:embulk-core:0.6.13"
32-
provided "org.embulk:embulk-core:0.6.13"
31+
compile "org.embulk:embulk-core:0.7.0"
32+
provided "org.embulk:embulk-core:0.7.0"
3333
compile "com.amazonaws:aws-java-sdk-s3:1.9.22"
3434
testCompile "junit:junit:4.+"
3535
testCompile "org.mockito:mockito-core:1.+"

embulk-input-s3/src/main/java/org/embulk/input/s3/AbstractS3FileInputPlugin.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import org.embulk.config.TaskSource;
3030
import org.embulk.config.ConfigSource;
3131
import org.embulk.config.ConfigDiff;
32-
import org.embulk.config.CommitReport;
32+
import org.embulk.config.TaskReport;
3333
import org.embulk.spi.BufferAllocator;
3434
import org.embulk.spi.Exec;
3535
import org.embulk.spi.FileInputPlugin;
@@ -124,7 +124,7 @@ public ConfigDiff resume(TaskSource taskSource,
124124
@Override
125125
public void cleanup(TaskSource taskSource,
126126
int taskCount,
127-
List<CommitReport> successCommitReports)
127+
List<TaskReport> successTaskReports)
128128
{
129129
// do nothing
130130
}
@@ -290,9 +290,9 @@ public S3FileInput(PluginTask task, int taskIndex)
290290

291291
public void abort() { }
292292

293-
public CommitReport commit()
293+
public TaskReport commit()
294294
{
295-
return Exec.newCommitReport();
295+
return Exec.newTaskReport();
296296
}
297297

298298
@Override

gradle/wrapper/gradle-wrapper.jar

-330 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Feb 04 13:46:12 PST 2015
1+
#Tue Aug 11 00:26:20 PDT 2015
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip

0 commit comments

Comments
 (0)