Commit 756f43d2 by Ren Ping

fix:自动任务截止时间优化

1 parent c7e4b8bc
......@@ -98,7 +98,6 @@ public class SchedulerServiceImpl implements SchedulerService {
String nextTime = DateUtil.format(nextFireTime, "HH:mm");
boolean cutOff = false;
//当前时间大于等于截止时间,或者当前时间+30分钟大于截止时间,运行停止
if (nextTime.compareTo(cutOffTime) > 0) {
cutOff = true;
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!