提交 73b6484d 编写于 作者: X xueli.xue

coding

上级 3e5bc1e3
......@@ -40,7 +40,8 @@ public class HandlerRouter {
JobThread jobThread = new JobThread(handler);
jobThread.start();
logger.info(">>>>>>>>>>> xxl-job regist JobThread success, jobkey:{}, handler:{}", new Object[]{jobkey, handler});
return HandlerRouter.JobThreadRepository.put(jobkey, jobThread); // putIfAbsent
HandlerRouter.JobThreadRepository.put(jobkey, jobThread); // putIfAbsent | oh my god, map's put method return the old value!!!
return jobThread;
}
public static JobThread loadJobThread(String jobKey){
return HandlerRouter.JobThreadRepository.get(jobKey);
......
......@@ -61,11 +61,6 @@ public class RunAction extends IAction {
}
}
// sometime, cmap.get can not return given value, i do not know why
if (jobThread == null) {
jobThread = HandlerRouter.loadJobThread(jobKey);
}
// push data to queue
jobThread.pushTriggerQueue(requestModel);
return new ResponseModel(ResponseModel.SUCCESS, null);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册