任务执行回调,SUCCESS状态才会触发子任务fix

v1.4
xueli.xue 8 years ago
parent cbeaf5a4f8
commit 1e7eea1332

@ -44,7 +44,7 @@ public class XxlJobLogCallbackServerHandler extends AbstractHandler {
// trigger success, to trigger child job, and avoid repeat trigger child job // trigger success, to trigger child job, and avoid repeat trigger child job
String childTriggerMsg = null; String childTriggerMsg = null;
if (!ResponseModel.SUCCESS.equals(log.getHandleStatus())) { if (ResponseModel.SUCCESS.equals(requestModel.getStatus()) && !ResponseModel.SUCCESS.equals(log.getHandleStatus())) {
XxlJobInfo xxlJobInfo = DynamicSchedulerUtil.xxlJobInfoDao.load(log.getJobGroup(), log.getJobName()); XxlJobInfo xxlJobInfo = DynamicSchedulerUtil.xxlJobInfoDao.load(log.getJobGroup(), log.getJobName());
if (xxlJobInfo!=null && StringUtils.isNotBlank(xxlJobInfo.getChildJobKey())) { if (xxlJobInfo!=null && StringUtils.isNotBlank(xxlJobInfo.getChildJobKey())) {
childTriggerMsg = "<hr>"; childTriggerMsg = "<hr>";

Loading…
Cancel
Save