Commit 12ebcfd4 by 许雪里 Committed by GitHub

Merge pull request #1193 from xyyz150/master

优化在JobThread尝试30次后销毁任务时,并发插入到triggerQueue中任务会失败的场景
parents d069883c d35bc023
......@@ -165,7 +165,9 @@ public class JobThread extends Thread{
} else {
if (idleTimes > 30) {
XxlJobExecutor.removeJobThread(jobId, "excutor idel times over limit.");
if(triggerQueue ==null||triggerQueue.size()==0) {
XxlJobExecutor.removeJobThread(jobId, "excutor idel times over limit.");
}
}
}
} catch (Throwable e) {
......
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