hailin0 commented on code in PR #5992:
URL: https://github.com/apache/seatunnel/pull/5992#discussion_r1572053405
##########
seatunnel-connectors-v2/connector-amazonsqs/src/main/java/org/apache/seatunnel/connectors/seatunnel/amazonsqs/source/AmazonSqsSource.java:
##########
@@ -113,7 +113,8 @@ private void setDeserialization(Config config) {
MessageFormat format =
ReadonlyConfig.fromConfig(config).get(FORMAT);
switch (format) {
case JSON:
- deserializationSchema = new
JsonDeserializationSchema(false, false, typeInfo);
+ deserializationSchema =
+ new JsonDeserializationSchema(false, false,
typeInfo, null);
Review Comment:
```suggestion
new JsonDeserializationSchema(false, false,
typeInfo);
```
suggestion update all `xxxDeserializationSchema.java`
```java
class JsonDeserializationSchema {
public JsonDeserializationSchema(agrs1, args2, args3){
this(agrs1, args2, args3, null);
}
public JsonDeserializationSchema(agrs1, args2, args3, args4){
...
}
}
```
--
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]