|
@@ -714,7 +714,7 @@ public class TaskManager {
|
|
|
|
|
|
collect.forEach(
|
|
|
(k, v) -> {
|
|
|
- histories.stream()
|
|
|
+ v.stream()
|
|
|
.filter(h -> h.getNodeId().equals(nodeId))
|
|
|
.findAny()
|
|
|
.ifPresent(
|
|
@@ -722,7 +722,7 @@ public class TaskManager {
|
|
|
throw new BizException("服务(ID:" + k + ")已被同节点审核完毕, 请刷新数据,查看最新信息");
|
|
|
});
|
|
|
|
|
|
- histories.stream()
|
|
|
+ v.stream()
|
|
|
.filter(h -> !h.getCheckResult())
|
|
|
.findAny()
|
|
|
.ifPresent(
|