bravekong commented on code in PR #3243:
URL:
https://github.com/apache/incubator-seatunnel/pull/3243#discussion_r1011047972
##########
seatunnel-connectors/seatunnel-connectors-flink/seatunnel-connector-flink-kafka/src/main/java/org/apache/seatunnel/flink/kafka/source/KafkaTableStream.java:
##########
@@ -110,7 +111,12 @@ public void prepare(FlinkEnvironment env) {
}
String schemaContent = config.getString(SCHEMA);
format =
FormatType.from(config.getString(SOURCE_FORMAT).trim().toLowerCase());
- schemaInfo = JsonUtils.parseArray(schemaContent);
+ try {
+ schemaInfo = JsonUtils.stringToJsonNode(schemaContent);
+ } catch (JsonProcessingException e) {
+ e.printStackTrace();
Review Comment:
> I don't have any other questions, it's good enough to be able to throw
specific exception information, like this, SchemaConvertException?
yes,I think you're right. I will update the code.
--
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]