Skip to content

Commit 6a56811

Browse files
authored
Merge pull request #26 from mzumi/merge_upstream
Merge `embulk-output-bigquery v0.6.9`
2 parents f2c291c + 91e259d commit 6a56811

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.6.9 - 2023-03-16
2+
* [enhancement] Add SSLException to retry job (thanks to @mzumi)
3+
14
## 0.6.8 - 2022-10-12
25
* [enhancement] Support JSON type (thanks to @civitaspo )
36
* [maintenance] Add an error message in order to retry (thanks to @mzumi)

embulk-output-bigquery.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |spec|
22
spec.name = "embulk-output-bigquery"
3-
spec.version = "0.7.1"
3+
spec.version = "0.6.9.trocco.0.0.1"
44
spec.authors = ["Satoshi Akama", "Naotoshi Seo"]
55
spec.summary = "Google BigQuery output plugin for Embulk"
66
spec.description = "Embulk plugin that insert records to Google BigQuery."

lib/embulk/output/bigquery/google_client.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def with_network_retry(&block)
7272
raise e
7373
end
7474
rescue ::Java::Java.net.SocketException, ::Java::Java.net.ConnectException => e
75+
rescue ::Java::Java.net.SocketException, ::Java::Java.net.ConnectException, ::Java::JavaxNetSsl::SSLException => e
7576
retry_messages = [
7677
'Broken pipe',
7778
'Connection reset',

0 commit comments

Comments
 (0)