ni-ze commented on code in PR #173:
URL: https://github.com/apache/rocketmq-streams/pull/173#discussion_r906946373
##########
rocketmq-streams-commons/src/main/java/org/apache/rocketmq/streams/common/context/UserDefinedMessage.java:
##########
@@ -318,12 +318,12 @@ public Date getDate(String key) {
@Override
public java.sql.Date getSqlDate(String key) {
- return super.getSqlDate(key);
+ return (java.sql.Date) super.getSqlDate(key);
Review Comment:
It is cause by update fastjson version, and I fixed it by changed the
return type.
--
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]