vernedeng commented on code in PR #7029: URL: https://github.com/apache/inlong/pull/7029#discussion_r1055406495
########## inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/core/impl/SortServiceImpl.java: ########## @@ -80,7 +81,15 @@ public List<SortStatusInfo> listSortStatus(SortStatusRequest request) { try { List<InlongGroupInfo> groupInfoList = request.getInlongGroupIds().stream() - .map(groupId -> groupService.get(groupId)) + .map(groupId -> { + try { + return groupService.get(groupId); + } catch (Exception e) { + log.debug("{} may have already been deleted, skip it", groupId); Review Comment: Why not print the exception -- 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: commits-unsubscr...@inlong.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org