ruanhang1993 commented on code in PR #3804:
URL: https://github.com/apache/flink-cdc/pull/3804#discussion_r1888103827


##########
flink-cdc-cli/src/main/java/org/apache/flink/cdc/cli/parser/YamlPipelineDefinitionParser.java:
##########
@@ -316,6 +318,10 @@ private TransformDef toTransformDef(JsonNode 
transformNode) {
                 
Optional.ofNullable(transformNode.get(TRANSFORM_DESCRIPTION_KEY))
                         .map(JsonNode::asText)
                         .orElse(null);
+        String convertorAfterTransform =
+                
Optional.ofNullable(transformNode.get(TRANSFORM_CONVERTOR_AFTER_TRANSFORM_KEY))
+                        .map(JsonNode::asText)
+                        .orElse(null);

Review Comment:
   It is hard to define the order of the converters. Only one converter is 
enough. 
   Multi converters should be merged into one converter.



-- 
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]

Reply via email to