Commit 644379bc by liuyu

Merge branch 'feature' into 'release'

2023年05/17 模板任务间隔优先级判断bug修复

See merge request !38
parents 397602f6 83cd7a9d
...@@ -94,7 +94,7 @@ public class TaskManager { ...@@ -94,7 +94,7 @@ public class TaskManager {
redissonUtil.deleteList(autoTask.getParamSource().getString(cacheId)); redissonUtil.deleteList(autoTask.getParamSource().getString(cacheId));
} }
// 删除正在运行得任务 // 删除正在运行得任务
if (autoTask.isSplitFilter()) { if (Objects.nonNull(autoTask.isSplitFilter())) {
redissonUtil.deleteBucket(concat(GenericAttribute.RUNNING, autoTask.getGroup())); redissonUtil.deleteBucket(concat(GenericAttribute.RUNNING, autoTask.getGroup()));
} }
} }
......
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 to comment