Commit 17d98652 by xuxueli

update document

parent 248a1bbe
......@@ -190,8 +190,8 @@ public class XxlJobServiceImpl implements XxlJobService {
}
// next trigger time (10s后生效,避开预读周期)
long nextTriggerTime = 0;
if (exists_jobInfo.getTriggerStatus() == 1) {
long nextTriggerTime = exists_jobInfo.getTriggerNextTime();
if (exists_jobInfo.getTriggerStatus() == 1 && !jobInfo.getJobCron().equals(exists_jobInfo.getJobCron()) ) {
try {
nextTriggerTime = new CronExpression(jobInfo.getJobCron()).getNextValidTimeAfter(new Date(System.currentTimeMillis() + 10000)).getTime();
} catch (ParseException 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