fuweng11 commented on code in PR #10639:
URL: https://github.com/apache/inlong/pull/10639#discussion_r1679264686
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/message/InlongMsgDeserializeOperator.java:
##########
@@ -87,6 +86,10 @@ public List<BriefMQMessage> decodeMsg(InlongStreamInfo
streamInfo, byte[] msgByt
DataTypeOperator dataTypeOperator =
dataTypeOperatorFactory.getInstance(DataTypeEnum.forType(streamInfo.getDataType()));
List<FieldInfo> streamFieldList =
dataTypeOperator.parseFields(body, streamInfo);
+ boolean ifFilter = checkIfFilter(request, streamFieldList);
+ if (!ifFilter) {
Review Comment:
Fixed.
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/message/RawMsgDeserializeOperator.java:
##########
@@ -59,6 +60,10 @@ public List<BriefMQMessage> decodeMsg(InlongStreamInfo
streamInfo,
DataTypeOperator dataTypeOperator =
dataTypeOperatorFactory.getInstance(DataTypeEnum.forType(streamInfo.getDataType()));
List<FieldInfo> fieldList = dataTypeOperator.parseFields(body,
streamInfo);
+ boolean ifFilter = checkIfFilter(request, fieldList);
Review Comment:
Fixed.
--
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]