修改超时时间
parent
4360ded640
commit
e3b9879e00
|
@ -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");
|
||||
listArrays.removeAll(set);
|
||||
log.info("9");
|
||||
DataValue[][] array = (DataValue[][]) listArrays.toArray();
|
||||
log.info("10");
|
||||
return array;
|
||||
if (!CollectionUtils.isEmpty(listArrays)) {
|
||||
listArrays.removeAll(set);
|
||||
log.info("9");
|
||||
DataValue[][] array = (DataValue[][]) listArrays.toArray();
|
||||
log.info("10");
|
||||
return array;
|
||||
}else {
|
||||
return prevResult;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue