embulk-input-s3 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/classpath/embulk-input-s3-0.2.10.jar +0 -0
- data/classpath/{embulk-util-aws-credentials-0.2.9.jar → embulk-util-aws-credentials-0.2.10.jar} +0 -0
- data/src/main/java/org/embulk/input/s3/AbstractS3FileInputPlugin.java +2 -1
- metadata +3 -3
- data/classpath/embulk-input-s3-0.2.9.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 055d297441e872f1cd700b295bbb920e3af77231
|
|
4
|
+
data.tar.gz: ffc29906648b0499922cf84c62989414689811e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf0e4b463a3319320bc0dfdc5f5cf7297f1de646134b2e6c985fed3e41eee1f382bcd91d2e44d7063fedc777b1c9172abec71d5e3faa096ff586d64e86eea860
|
|
7
|
+
data.tar.gz: d0c99424fdb1c174637cf07330f72286e43c4f793ee77471d6d0bfb86f3186ca60917d732bec85c16da511e1297363488ea6c4a4d5b7384fc5b6782f649390d1
|
|
Binary file
|
data/classpath/{embulk-util-aws-credentials-0.2.9.jar → embulk-util-aws-credentials-0.2.10.jar}
RENAMED
|
Binary file
|
|
@@ -166,7 +166,8 @@ public abstract class AbstractS3FileInputPlugin
|
|
|
166
166
|
if (ex.getErrorType().equals(AmazonServiceException.ErrorType.Client)) {
|
|
167
167
|
// HTTP 40x errors. auth error, bucket doesn't exist, etc. See AWS document for the full list:
|
|
168
168
|
// http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html
|
|
169
|
-
if (ex.getStatusCode() != 400
|
|
169
|
+
if (ex.getStatusCode() != 400 // 404 Bad Request is unexpected error
|
|
170
|
+
|| "ExpiredToken".equalsIgnoreCase(ex.getErrorCode())) { // if statusCode == 400 && errorCode == ExpiredToken => throws ConfigException
|
|
170
171
|
throw new ConfigException(ex);
|
|
171
172
|
}
|
|
172
173
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-s3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
@@ -59,8 +59,8 @@ files:
|
|
|
59
59
|
- classpath/aws-java-sdk-kms-1.10.33.jar
|
|
60
60
|
- classpath/aws-java-sdk-s3-1.10.33.jar
|
|
61
61
|
- classpath/commons-codec-1.6.jar
|
|
62
|
-
- classpath/embulk-input-s3-0.2.
|
|
63
|
-
- classpath/embulk-util-aws-credentials-0.2.
|
|
62
|
+
- classpath/embulk-input-s3-0.2.10.jar
|
|
63
|
+
- classpath/embulk-util-aws-credentials-0.2.10.jar
|
|
64
64
|
- classpath/httpclient-4.3.6.jar
|
|
65
65
|
- classpath/httpcore-4.3.3.jar
|
|
66
66
|
- classpath/jcl-over-slf4j-1.7.12.jar
|
|
Binary file
|