fluent-plugin-hekk_redshift 0.0.4 → 0.0.5
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.
- data/VERSION +1 -1
- data/lib/fluent/plugin/out_hekk_redshift.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.5
|
|
@@ -282,7 +282,7 @@ class HekkRedshiftOutput < BufferedOutput
|
|
|
282
282
|
conn.exec(sql)
|
|
283
283
|
$log.info format_log('completed inserting to redshift.')
|
|
284
284
|
rescue PG::Error => e
|
|
285
|
-
$log.error format_log(
|
|
285
|
+
$log.error format_log("failed to insert copy command into redshift. sql=#{sql}"), :error=>e.to_s
|
|
286
286
|
raise e unless e.to_s =~ IGNORE_REDSHIFT_ERROR_REGEXP
|
|
287
287
|
return false # for debug
|
|
288
288
|
ensure
|