Browse Source

fix bug

Signed-off-by: jagger <cossjie@foxmail.com>

Former-commit-id: 4c64c4781c
pull/281/head
jagger 1 year ago
parent
commit
4ab7290610
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      desc/inference/inference.api
  2. +1
    -1
      internal/types/types.go

+ 1
- 1
desc/inference/inference.api View File

@@ -122,7 +122,7 @@ type (
}

StartAllByDeployTaskIdReq {
Id string `form:"deployTaskId" json:"deployTaskId"`
Id string `json:"deployTaskId"`
}

StartAllByDeployTaskIdResp {


+ 1
- 1
internal/types/types.go View File

@@ -6014,7 +6014,7 @@ type InferenceTaskStatResp struct {
}

type StartAllByDeployTaskIdReq struct {
Id string `form:"deployTaskId" json:"deployTaskId"`
Id string `json:"deployTaskId"`
}

type StartAllByDeployTaskIdResp struct {


Loading…
Cancel
Save