You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
607 B
25 lines
607 B
package retry |
|
|
|
import ( |
|
"go-common/app/job/main/archive/model/result" |
|
) |
|
|
|
const ( |
|
FailList = "arc_job_fail_list" |
|
FailUpCache = "up_cache" |
|
FailUpVideoCache = "up_video_cache" |
|
FailDelVideoCache = "del_video_cache" |
|
FailDatabus = "up_databus" |
|
FailResultAdd = "result_add" |
|
) |
|
|
|
// Info retry data |
|
type Info struct { |
|
Action string `json:"action"` |
|
Data struct { |
|
Aid int64 `json:"aid"` |
|
State int `json:"state"` |
|
DatabusMsg *result.ArchiveUpInfo `json:"dbus_msg"` |
|
Cids []int64 `json:"cid"` |
|
} `json:"data"` |
|
}
|
|
|