File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/main/java/org/embulk/input/gcs Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.3.3 - 2020-04-12
2
+ * [ maintenance] Update validate error message for last_path [ #50 ] ( https://github.com/embulk/embulk-input-gcs/pull/50 )
3
+
1
4
## 0.3.2 - 2020-01-13
2
5
* [ maintenance] Improve base64encode method for last_path [ #47 ] ( https://github.com/embulk/embulk-input-gcs/pull/47 )
3
6
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ configurations {
20
20
sourceCompatibility = 1.8
21
21
targetCompatibility = 1.8
22
22
23
- version = " 0.3.2 "
23
+ version = " 0.3.3 "
24
24
25
25
// Relocate Guava packages since it's incompatible with Guava's version from Embulk
26
26
shadowJar {
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ else if (AuthUtils.AuthMethod.private_key.equals(task.getAuthMethod())) {
50
50
// @see https://cloud.google.com/storage/docs/bucket-naming
51
51
if (task .getLastPath ().isPresent ()) {
52
52
if (task .getLastPath ().get ().length () >= 128 ) {
53
- throw new ConfigException ("last_path length is allowed between 1 and 1024 bytes " );
53
+ throw new ConfigException ("last_path length is allowed up to 127 characters " );
54
54
}
55
55
}
56
56
You can’t perform that action at this time.
0 commit comments