Skip to content

Commit b05377d

Browse files
authored
Merge pull request #28 from yas-okadatech/24864-remove-rescue
fix: remove rescue around bigquery.patch_table because it works correctly even if the original issue crops up
2 parents 52f758e + b86ab1a commit b05377d

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

lib/embulk/output/bigquery.rb

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -407,12 +407,7 @@ def self.transaction(config, schema, task_count, &control)
407407
end
408408
end
409409

410-
begin
411-
bigquery.patch_table
412-
rescue => e
413-
Embulk.logger.warn("patch_table is failed")
414-
Embulk.logger.warn("#{e.class} : #{e.message}")
415-
end
410+
bigquery.patch_table
416411

417412
ensure
418413
begin

0 commit comments

Comments
 (0)