修改超时时间

master
Cui YongXing 2024-09-10 16:24:35 +08:00
parent 4360ded640
commit e3b9879e00
1 changed files with 10 additions and 5 deletions

View File

@ -457,11 +457,16 @@ public class TaskInfoServiceImpl extends ServiceImpl<TaskInfoMapper, TaskInfo> i
log.info("7");
List<DataValue[]> listArrays = Arrays.stream(prevResult).toList();
log.info("8");
if (!CollectionUtils.isEmpty(listArrays)) {
listArrays.removeAll(set);
log.info("9");
DataValue[][] array = (DataValue[][]) listArrays.toArray();
log.info("10");
return array;
}else {
return prevResult;
}
};