We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a567c0d commit 9fea097Copy full SHA for 9fea097
lib/embulk/output/bigquery/google_client.rb
@@ -50,7 +50,7 @@ def with_network_retry(&block)
50
begin
51
yield
52
rescue ::Java::Java.net.SocketException, ::Java::Java.net.ConnectException => e
53
- if ['Broken pipe', 'Connection reset', 'Connection timed out'].select! { |x| e.message.include?(x) }.empty?
+ if ['Broken pipe', 'Connection reset', 'Connection timed out'].select { |x| e.message.include?(x) }.empty?
54
raise e
55
else
56
if retries < @task['retries']
0 commit comments