Hisoka-X commented on code in PR #4148:
URL:
https://github.com/apache/incubator-seatunnel/pull/4148#discussion_r1118214574
##########
seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/task/flow/TransformFlowLifeCycle.java:
##########
@@ -93,4 +102,12 @@ public void received(Record<?> record) {
public void restoreState(List<ActionSubtaskState> actionStateList) throws
Exception {
// nothing
}
+
+ @Override
+ public void close() throws IOException {
+ for (SeaTunnelTransform<T> t : transform) {
+ t.close();
Review Comment:
Hi, please catch close method on each transfrom, so we can make sure every
transform close method can be called.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]