updated scheduleResult api

Former-commit-id: 13291220187c89f4eaa3f76068b46a870cbcdc32
This commit is contained in:
tzwang 2024-04-11 07:21:04 -04:00
parent 97572584c2
commit 41c0ed7844
2 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ type (
ScheduleResult {
ClusterId string `json:"clusterId"`
TaskId string `json:"taskId"`
Strategy string `json:"strategy"`
Replica int32 `json:"replica"`
Msg string `json:"msg"`
}

View File

@ -5289,6 +5289,7 @@ type ScheduleResp struct {
type ScheduleResult struct {
ClusterId string `json:"clusterId"`
TaskId string `json:"taskId"`
Strategy string `json:"strategy"`
Replica int32 `json:"replica"`
Msg string `json:"msg"`
}