修改分页条数

master
Cui YongXing 2024-09-08 22:07:53 +08:00
parent 32a79ff298
commit d14e0cf350
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ import static com.muyu.task.server.thread.OptimizedPrioritizedThreadPool.*;
@Service
public class TaskInfoServiceImpl extends ServiceImpl<TaskInfoMapper, TaskInfo> implements TaskInfoService {
private final Integer PAGE_SIZE = 50000;
private final Integer PAGE_SIZE = 20000;
@Resource
private TaskInfoMapper taskInfoMapper;
@ -408,6 +408,7 @@ public class TaskInfoServiceImpl extends ServiceImpl<TaskInfoMapper, TaskInfo> i
if (data.getRuleId().equals("1")) {
for (DataValue[] values : prevResult) {
for (DataValue value : values) {
log.info(value.getValue());
ruleFeign.testEngine(data.getClassName(),value);
}
}