优化在JobThread尝试30次后销毁任务时,并发插入到triggerQueue中任务会失败的场景

pull/14/head
xyyz150 5 years ago
parent 4dabb4b1a0
commit d35bc02336

@ -165,9 +165,11 @@ public class JobThread extends Thread{
} else { } else {
if (idleTimes > 30) { if (idleTimes > 30) {
if(triggerQueue ==null||triggerQueue.size()==0) {
XxlJobExecutor.removeJobThread(jobId, "excutor idel times over limit."); XxlJobExecutor.removeJobThread(jobId, "excutor idel times over limit.");
} }
} }
}
} catch (Throwable e) { } catch (Throwable e) {
if (toStop) { if (toStop) {
XxlJobLogger.log("<br>----------- JobThread toStop, stopReason:" + stopReason); XxlJobLogger.log("<br>----------- JobThread toStop, stopReason:" + stopReason);

Loading…
Cancel
Save