forked from JointCloud/pcm-coordinator
update TaskLog
This commit is contained in:
parent
b82a4a5943
commit
cb7325393f
|
@ -7,22 +7,19 @@ import (
|
||||||
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/schedule"
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/logic/schedule"
|
||||||
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
||||||
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
|
||||||
|
"gitlink.org.cn/JointCloud/pcm-coordinator/pkg/repository/result"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ScheduleGetAiJobLogLogHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
func ScheduleGetAiJobLogLogHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
||||||
return func(w http.ResponseWriter, r *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
var req types.AiJobLogReq
|
var req types.AiJobLogReq
|
||||||
if err := httpx.Parse(r, &req); err != nil {
|
if err := httpx.Parse(r, &req); err != nil {
|
||||||
httpx.ErrorCtx(r.Context(), w, err)
|
result.ParamErrorResult(r, w, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
l := schedule.NewScheduleGetAiJobLogLogLogic(r.Context(), svcCtx)
|
l := schedule.NewScheduleGetAiJobLogLogLogic(r.Context(), svcCtx)
|
||||||
resp, err := l.ScheduleGetAiJobLogLog(&req)
|
resp, err := l.ScheduleGetAiJobLogLog(&req)
|
||||||
if err != nil {
|
result.HttpResult(r, w, resp, err)
|
||||||
httpx.ErrorCtx(r.Context(), w, err)
|
|
||||||
} else {
|
|
||||||
httpx.OkJsonCtx(r.Context(), w, resp)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,3 +70,7 @@ func (l *TaskDetailsLogic) TaskDetails(req *types.FId) (resp *types.TaskDetailsR
|
||||||
resp.SubTaskInfos = subList
|
resp.SubTaskInfos = subList
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l *TaskDetailsLogic) deployTaskDetail() {
|
||||||
|
//l.svcCtx.Scheduler.AiStorages.GetInferDeployInstanceById()
|
||||||
|
}
|
||||||
|
|
|
@ -671,7 +671,7 @@ func (o *OpenI) GetTrainingTaskLog(ctx context.Context, taskId string, instanceN
|
||||||
Send()
|
Send()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", errors.New("failed to invoke taskDetails")
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
if resp.Data == "" {
|
if resp.Data == "" {
|
||||||
|
|
Loading…
Reference in New Issue