This commit is contained in:
liuzhihang1
2025-02-19 16:17:46 +08:00
parent 3c2a0150c3
commit 23cd6e09dd

View File

@@ -111,7 +111,8 @@ var OperationHandle = map[constants.TaskOperation]operationFunc{
log.Logger.Debugw("进程已在运行")
return false
}
return proc.Start() == nil
go proc.Start()
return true
},
constants.TASK_START_WAIT_DONE: func(data *model.Task, proc *ProcessBase) bool {