fuweng11 commented on code in PR #7982: URL: https://github.com/apache/inlong/pull/7982#discussion_r1188304082
########## inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/core/impl/AgentServiceImpl.java: ########## @@ -337,6 +337,11 @@ private void preProcessTemplateFileTask(TaskRequest taskRequest) { List<StreamSourceEntity> sourceEntities = sourceMapper.selectTemplateSourceByCluster(needCopiedStatusList, Lists.newArrayList(SourceType.FILE), agentClusterName); sourceEntities.forEach(sourceEntity -> { + InlongGroupEntity groupEntity = groupMapper.selectByGroupId(sourceEntity.getInlongGroupId()); + Set<GroupStatus> noNeedAddTask = Sets.newHashSet(GroupStatus.SUSPENDED, GroupStatus.SUSPENDING); Review Comment: Because `inlongGroupId` may be different in `sourceEntities`. -- 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