fix[project]: 创建任务文件夹设置TagReq bugfix
This commit is contained in:
@@ -4360,7 +4360,7 @@ public class LyricInternalServiceImpl implements ILyricInternalService {
|
|||||||
TagReq tagReq = new TagReq();
|
TagReq tagReq = new TagReq();
|
||||||
BeanUtils.copyProperties(task,tagReq);
|
BeanUtils.copyProperties(task,tagReq);
|
||||||
tagReq.setTaskId(task.getUuid());
|
tagReq.setTaskId(task.getUuid());
|
||||||
tagReq.setTaskId(task.getTaskName() );
|
tagReq.setTaskName(task.getTaskName());
|
||||||
CompletableFuture.runAsync(() -> {
|
CompletableFuture.runAsync(() -> {
|
||||||
String savePath = REPORT_PATH_PREFIX + task.getUuid();
|
String savePath = REPORT_PATH_PREFIX + task.getUuid();
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -224,7 +224,7 @@ public class SimulationTaskServiceImpl extends ServiceImpl<SimulationTaskMapper,
|
|||||||
TagReq tagReq = new TagReq();
|
TagReq tagReq = new TagReq();
|
||||||
BeanUtils.copyProperties(task,tagReq);
|
BeanUtils.copyProperties(task,tagReq);
|
||||||
tagReq.setTaskId(task.getUuid());
|
tagReq.setTaskId(task.getUuid());
|
||||||
tagReq.setTaskId(task.getTaskName() );
|
tagReq.setTaskName(task.getTaskName());
|
||||||
createTaskDir(task.getUuid(), workspaceId, task.getTaskName(),tagReq);
|
createTaskDir(task.getUuid(), workspaceId, task.getTaskName(),tagReq);
|
||||||
if (!isDownloadFlag) {
|
if (!isDownloadFlag) {
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user