fix
This commit is contained in:
parent
8abb3bc2d2
commit
ab88067291
16
job.go
16
job.go
@ -1520,21 +1520,17 @@ func jobGWithdraw(j Job) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m, err := getObjMsg(j.Trigger)
|
|
||||||
logOnError(err, "jobGWithdraw : getObjMsg")
|
|
||||||
if err == nil {
|
|
||||||
p.CleanupMsg = append(p.CleanupMsg, *m)
|
p.CleanupMsg = append(p.CleanupMsg, *m)
|
||||||
}
|
|
||||||
|
|
||||||
if isUnique {
|
if isUnique {
|
||||||
for _, req := range p.Items {
|
for _, req := range p.Items {
|
||||||
if req.Inspect {
|
if req.Inspect {
|
||||||
p2 = JobPayloadMsgDel{
|
p2 := JobPayloadMsgDel{
|
||||||
MsgTypeID64: cacheObjSubType[`msg_g_inspect_req`],
|
MsgTypeID64: cacheObjSubType[`msg_g_inspect_req`],
|
||||||
Delay: (10 * time.Second),
|
Delay: (10 * time.Second),
|
||||||
ObjMsgID64: 0,
|
ObjMsgID64: 0,
|
||||||
}
|
}
|
||||||
b2, _ = json.Marshal(p2)
|
b2, _ := json.Marshal(p2)
|
||||||
createJobCallback(cacheObjSubType[`job_msg_del`], j.UserID64, p2.MsgTypeID64, b2, time.Minute)
|
createJobCallback(cacheObjSubType[`job_msg_del`], j.UserID64, p2.MsgTypeID64, b2, time.Minute)
|
||||||
|
|
||||||
p.Inspecting = req.Code
|
p.Inspecting = req.Code
|
||||||
@ -1568,20 +1564,16 @@ func jobGWithdraw(j Job) {
|
|||||||
}
|
}
|
||||||
p.Inspecting = ``
|
p.Inspecting = ``
|
||||||
|
|
||||||
m, err := getObjMsg(j.Trigger)
|
|
||||||
logOnError(err, "jobGWithdraw : getObjMsg")
|
|
||||||
if err == nil {
|
|
||||||
p.CleanupMsg = append(p.CleanupMsg, *m)
|
p.CleanupMsg = append(p.CleanupMsg, *m)
|
||||||
}
|
|
||||||
|
|
||||||
for _, req := range p.Items {
|
for _, req := range p.Items {
|
||||||
if req.Inspect {
|
if req.Inspect {
|
||||||
p2 = JobPayloadMsgDel{
|
p2 := JobPayloadMsgDel{
|
||||||
MsgTypeID64: cacheObjSubType[`msg_g_inspect_req`],
|
MsgTypeID64: cacheObjSubType[`msg_g_inspect_req`],
|
||||||
Delay: (10 * time.Second),
|
Delay: (10 * time.Second),
|
||||||
ObjMsgID64: 0,
|
ObjMsgID64: 0,
|
||||||
}
|
}
|
||||||
b2, _ = json.Marshal(p2)
|
b2, _ := json.Marshal(p2)
|
||||||
createJobCallback(cacheObjSubType[`job_msg_del`], j.UserID64, p2.MsgTypeID64, b2, time.Minute)
|
createJobCallback(cacheObjSubType[`job_msg_del`], j.UserID64, p2.MsgTypeID64, b2, time.Minute)
|
||||||
|
|
||||||
p.Inspecting = req.Code
|
p.Inspecting = req.Code
|
||||||
|
Loading…
Reference in New Issue
Block a user