fuweng11 commented on code in PR #11839:
URL: https://github.com/apache/inlong/pull/11839#discussion_r2052166852
##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/resource/sort/SortFlinkConfigOperator.java:
##########
@@ -318,8 +318,10 @@ private void addAuditId(Map<String, Object> properties,
String type, IndicatorTy
}
throw new BusinessException("current audit id can not
find cdc audit information");
}).collect(Collectors.toList());
- properties.putIfAbsent("metrics.changelog.audit.key",
- Joiner.on(InlongConstants.AMPERSAND).join(cdcAuditIdList));
+ if (CollectionUtils.isNotEmpty(cdcAuditIdList)) {
+ properties.putIfAbsent("metrics.changelog.audit.key",
Review Comment:
Done.
--
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]