xxl-job / xxl-job-executor-go

xxl-job 执行器(golang 客户端)
MIT License
431 stars 105 forks source link

update callElement #4

Closed vearne closed 3 years ago

vearne commented 3 years ago

xxl-job-admin 的callback接口已经发生变更 [{ "logId":1, // 本次调度日志ID "logDateTim":0, // 本次调度日志时间 "executeResult":{ "code": 200, // 200 表示任务执行正常,500表示失败 "msg": null } }]

TO

[{ "logId":1, // 本次调度日志ID "logDateTim":0, // 本次调度日志时间 "handleCode": 200, // 200 表示任务执行正常,500表示失败 "handleMsg": null }]

因此需要调整callElement的结构

rushuinet commented 3 years ago

查询并不此变更

vearne commented 3 years ago

README还没有改过来,但是其实接口已经变了。