tobezhou33 commented on code in PR #4504:
URL:
https://github.com/apache/incubator-seatunnel/pull/4504#discussion_r1162284709
##########
seatunnel-core/seatunnel-flink-starter/seatunnel-flink-starter-common/src/main/java/org/apache/seatunnel/core/starter/flink/execution/TransformExecuteProcessor.java:
##########
@@ -120,7 +121,19 @@ protected DataStream<Row>
flinkTransform(SeaTunnelTransform transform, DataStrea
new FlinkRowConverter(transform.getProducedType());
DataStream<Row> output =
stream.flatMap(
- new FlatMapFunction<Row, Row>() {
+ new RichFlatMapFunction<Row, Row>() {
+ @Override
+ public void open(Configuration parameters) throws
Exception {
+ super.open(parameters);
Review Comment:
Sorry, I misunderstood the meaning,this super.open can be removed。it default
empty
--
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]