feat(REQ-2924) - 优化异常告警的内容

This commit is contained in:
wangli 2024-09-14 15:23:50 +08:00
parent adcb49c806
commit 9ccfa13340

View File

@ -51,7 +51,7 @@ public class ErrorReporterEventListener implements BpmnAsyncJobEventListener {
reporterType = ReporterType.ONLY_LOG;
}
if (job.getRetries() <= 1) {
reporterType.executeAction(profile, "异步任务执行异常, 重试 3 次后仍未成功", sendDingTalk, new Object[]{job}, "act_ru_job", throwable, false);
reporterType.executeAction(profile, "异步任务执行异常, 重试 3 次后仍未成功", sendDingTalk, new Object[]{job}, "act_ru_job", "", throwable, false);
}
}