embulk-output-td 0.3.14 → 0.3.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: acb7dba90ace0ec98b4abc26140bab84198a38cb
4
- data.tar.gz: 1d007fa15f2ae945ad283ce8838af62a3f362342
3
+ metadata.gz: d84da88a0b812745d299e5cc9f79c0da3de7c935
4
+ data.tar.gz: 124b87a0282e8ef587a8426fafff5eb161d7c6ac
5
5
  SHA512:
6
- metadata.gz: 2cf680dfc889a3a9d621fbcc8d1b387a4c86a07f29e339ed08b4f68069eaacd6c26fa32c5374bf906fa658a9dd5c3b23e35958a1eb9371542a411de1957e923c
7
- data.tar.gz: 1fd7159f914ede2231ae4f6c633ad9f1380460ce94a453e531553e66ecb1cd8860a49a3658d25b72a63c96c54a8c1ec0b159d1864125f3be6555dd776b1d1dbf
6
+ metadata.gz: c8dddfbb22ffe88bddc057fff3027b1e2ad8b7e3ce13a50d735de9731119c2c2510f9714d5464b81e15d94f776a2ca724d684b4b44a53ed2e0a83a57af0f5adc
7
+ data.tar.gz: 10c5381c7b06618cdd3c931684f8debbc7ef579b74aab8f72f5ae0e346cd9af71e86ef7adfd9ba08d96755d169f2663a8657e62d3b4a1f8899d8eaccea816ea7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.15 - 2017-05-30
2
+
3
+ * [fix bug] Use underscores for sessions names to fix #70 [#71](https://github.com/treasure-data/embulk-output-td/pull/71)
4
+
1
5
  ## 0.3.14 - 2017-05-24
2
6
 
3
7
  * [maintenance] Use UUID as postfix of generated bulk_import session name [#67](https://github.com/treasure-data/embulk-output-td/pull/67)
data/build.gradle CHANGED
@@ -19,7 +19,7 @@ configurations {
19
19
  }
20
20
 
21
21
  group = "org.embulk.output.td"
22
- version = "0.3.14"
22
+ version = "0.3.15"
23
23
 
24
24
  compileJava.options.encoding = 'UTF-8' // source encoding
25
25
  sourceCompatibility = 1.7
@@ -1,7 +1,7 @@
1
1
 
2
2
  Gem::Specification.new do |spec|
3
3
  spec.name = "embulk-output-td"
4
- spec.version = "0.3.14"
4
+ spec.version = "0.3.15"
5
5
  spec.authors = ["Muga Nishizawa"]
6
6
  spec.summary = %[TreasureData output plugin for Embulk]
7
7
  spec.description = %[TreasureData output plugin is an Embulk plugin that loads records to TreasureData read by any input plugins. Search the input plugins by 'embulk-output' keyword.]
@@ -577,7 +577,7 @@ public class TdOutputPlugin
577
577
  Timestamp time = exec.getTransactionTime(); // TODO implement Exec.getTransactionUniqueName()
578
578
  return String.format("embulk_%s_%09d_%s",
579
579
  DateTimeFormat.forPattern("yyyyMMdd_HHmmss").withZoneUTC().print(time.getEpochSecond() * 1000),
580
- time.getNano(), UUID.randomUUID().toString());
580
+ time.getNano(), UUID.randomUUID().toString().replace('-', '_'));
581
581
  }
582
582
  }
583
583
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-td
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.14
4
+ version: 0.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Muga Nishizawa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-26 00:00:00.000000000 Z
11
+ date: 2017-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ files:
82
82
  - src/test/java/org/embulk/output/td/TestTdOutputPlugin.java
83
83
  - src/test/java/org/embulk/output/td/TestTimeValueGenerator.java
84
84
  - src/test/java/org/embulk/output/td/writer/TestFieldWriterSet.java
85
- - classpath/embulk-output-td-0.3.14.jar
85
+ - classpath/embulk-output-td-0.3.15.jar
86
86
  - classpath/hamcrest-core-1.1.jar
87
87
  - classpath/jackson-datatype-json-org-2.6.7.jar
88
88
  - classpath/jetty-client-9.2.2.v20140723.jar