Commit 1e7eea13 by xueli.xue

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

parent cbeaf5a4
......@@ -44,7 +44,7 @@ public class XxlJobLogCallbackServerHandler extends AbstractHandler {
// trigger success, to trigger child job, and avoid repeat trigger child job
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());
if (xxlJobInfo!=null && StringUtils.isNotBlank(xxlJobInfo.getChildJobKey())) {
childTriggerMsg = "<hr>";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment