This commit is contained in:
even 2025-07-30 18:13:54 +08:00
parent 7749abdabd
commit c44c619512
2 changed files with 1 additions and 5 deletions

View File

@ -113,7 +113,7 @@ public class AFLWorker extends DockerWorker {
} }
localVariables.put(DIYImageExecuteCommandConstant.STATUS_CODE, statusCode); localVariables.put(DIYImageExecuteCommandConstant.STATUS_CODE, statusCode);
afterTaskExecute(context); afterTaskExecute(context);
afterPipelineExecute(context); afterPipelineExecute(context,pipeline);
} }
} }
private String cdSourceName(String fileName){ private String cdSourceName(String fileName){

View File

@ -132,9 +132,6 @@ public class LocalAflCrashesServiceImpl extends ServiceImpl<LocalAflCrashesDao,
if (!StringUtils.isEmpty(req.getTaskId())){ if (!StringUtils.isEmpty(req.getTaskId())){
aflCrashesInfo.setTaskId(req.getTaskId()); aflCrashesInfo.setTaskId(req.getTaskId());
} }
if (!StringUtils.isEmpty(req.getPipelineHistoryId())){
aflCrashesInfo.setPipelineHistoryId(req.getPipelineHistoryId());
}
aflCrashesInfo.setGroupIdentifier(uuid); aflCrashesInfo.setGroupIdentifier(uuid);
} }
} }
@ -164,7 +161,6 @@ public class LocalAflCrashesServiceImpl extends ServiceImpl<LocalAflCrashesDao,
if (!StringUtils.isEmpty(req.getTaskId())){ if (!StringUtils.isEmpty(req.getTaskId())){
aflCrashesInfo.setTaskId(req.getTaskId()); aflCrashesInfo.setTaskId(req.getTaskId());
} }
aflCrashesInfo.setPipelineHistoryId(req.getPipelineHistoryId());
aflCrashesInfo.setTaskType("AFL"); aflCrashesInfo.setTaskType("AFL");
aflCrashesInfo.setInstanceId(req.getInstanceId()); aflCrashesInfo.setInstanceId(req.getInstanceId());
aflCrashesInfo.setTargetType(req.getTargetType()); aflCrashesInfo.setTargetType(req.getTargetType());