This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
JointCloud
/
pcm-coordinator
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
0
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
added taskName
pull/468/head
tzwang
6 months ago
parent
9afda659a3
commit
87dce38462
2 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
internal/logic/inference/createinferencetasklogic.go
+3
-0
internal/logic/schedule/schedulecreatetasklogic.go
+ 1
- 0
internal/logic/inference/createinferencetasklogic.go
View File
@@ -82,6 +82,7 @@ func (l *CreateInferenceTaskLogic) CreateInferenceTask(req *types.CreateInferenc
}
resp.TaskId = strconv.FormatInt(taskId, 10)
resp.TaskName = taskName
return
}
+ 3
- 0
internal/logic/schedule/schedulecreatetasklogic.go
View File
@@ -173,6 +173,7 @@ func (l *ScheduleCreateTaskLogic) ScheduleCreateTask(req *types.CreateTaskReq) (
}
resp.ScheduleDatas = schedatas
resp.TaskID = taskId
resp.TaskName = taskName
return resp, nil
} else {
@@ -203,6 +204,8 @@ func (l *ScheduleCreateTaskLogic) ScheduleCreateTask(req *types.CreateTaskReq) (
}
resp.ScheduleDatas = schedatas
resp.TaskID = taskId
resp.TaskName = taskName
return resp, nil
}
}
Write
Preview
Loading…
Cancel
Save