Browse Source

Merge pull request '提交代码,修改参数获取方式。' (#3396) from zouap_static into V20221214

Reviewed-on: https://openi.pcl.ac.cn/OpenI/aiforge/pulls/3396
Reviewed-by: zhoupzh <zhoupzh@pcl.ac.cn>
V20221214
zhoupzh 2 years ago
parent
commit
1a69ebc466
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/repo/ai_model_convert.go

+ 1
- 1
routers/repo/ai_model_convert.go View File

@@ -603,7 +603,7 @@ func stopModelConvert(id string) error {
}

func StopModelConvertApi(ctx *context.Context) {
id := ctx.Params(":id")
id := ctx.Query("id")
log.Info("stop model convert start.id=" + id)
err := stopModelConvert(id)
if err == nil {


Loading…
Cancel
Save