Closed hito4t closed 8 years ago
Hi Thank you for the useful plugin!
In close method of the anonymous PageOutput class, close method of the argument output is not called. https://github.com/sonots/embulk-filter-column/blob/master/src/main/java/org/embulk/filter/ColumnFilterPlugin.java#L329 Therefore close method of the following output plugin is not called.
close
PageOutput
output
You may need to call finish method of the argument output in finish method of the anonymous PageOutput class.
finish
Thanks
It seemed this is a bug of embulk itself https://github.com/embulk/embulk/pull/394
Thank you!
Hi Thank you for the useful plugin!
In
close
method of the anonymousPageOutput
class,close
method of the argumentoutput
is not called. https://github.com/sonots/embulk-filter-column/blob/master/src/main/java/org/embulk/filter/ColumnFilterPlugin.java#L329 Thereforeclose
method of the following output plugin is not called.You may need to call
finish
method of the argumentoutput
infinish
method of the anonymousPageOutput
class.Thanks