This commit is contained in:
even 2025-07-07 18:07:54 +08:00
commit 88219bff9a
5 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@ public class AflCrashesInfoServiceImpl extends ServiceImpl<AflCrashesInfoDao, Af
if (StringUtils.isEmpty(req.getPipelineId()) || StringUtils.isEmpty(req.getTaskId())){
throw new ServiceException(GlobalErrorCodeConstants.INTERNAL_SERVER_ERROR.getCode(),"pipelineId或者taskId不能为空");
}
String uuid = UUID.randomUUID().toString();
String uuid = req.getGroupIdentifier();
BaseRunContext runContext = runContextManager.getContext(req.getPipelineId());
if (ObjectUtils.isEmpty(runContext)){

View File

@ -90,7 +90,7 @@ public class AflInfoServiceImpl extends ServiceImpl<AflInfoDao, AflInfo> impleme
if (!StringUtils.isEmpty(req.getPipelineHistoryId())){
aflInfo.setPipelineHistoryId(req.getPipelineHistoryId());
}
aflInfo.setGroupIdentifier(UUID.randomUUID().toString());
aflInfo.setGroupIdentifier(req.getGroupIdentifier());
baseMapper.insert(aflInfo);
return aflInfo.getGroupIdentifier();

View File

@ -87,7 +87,7 @@ public class AflPlotInfoServiceImpl extends ServiceImpl<AflPlotInfoDao, AflPlotI
if (!StringUtils.isEmpty(req.getPipelineHistoryId())){
aflPlotInfo.setPipelineHistoryId(req.getPipelineHistoryId());
}
aflPlotInfo.setGroupIdentifier(UUID.randomUUID().toString());
aflPlotInfo.setGroupIdentifier(req.getGroupIdentifier());
baseMapper.insert(aflPlotInfo);
return aflPlotInfo.getGroupIdentifier();

View File

@ -180,7 +180,7 @@ public class AflSeedInfoServiceImpl extends ServiceImpl<AflSeedInfoDao, AflSeedI
if (StringUtils.isEmpty(req.getPipelineId()) || StringUtils.isEmpty(req.getTaskId())){
throw new ServiceException(GlobalErrorCodeConstants.INTERNAL_SERVER_ERROR.getCode(),"pipelineId或者taskId不能为空");
}
String uuid = UUID.randomUUID().toString();
String uuid = req.getGroupIdentifier();
BaseRunContext runContext = runContextManager.getContext(req.getPipelineId());
if (ObjectUtils.isEmpty(runContext)){

View File

@ -1375,7 +1375,7 @@ public class SftpUploadUtil {
}
if (lastLine.isEmpty()) {
throw new SftpUploadException("文件内容为空或没有有效数据行");
return new AflPlotInfo();
}
// 按逗号分割字段