REM:
1. 修改获取所有处置任务接口currentStatus值的判断 0: 处置中;1:处置完成
This commit is contained in:
chenlinghy 2020-05-14 15:50:24 +08:00
parent 3e1e07f7ca
commit e3116de50d
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ public class DisposeNodeInfoController {
.startTime(Helper.getTimestampSecond(k.getBeginTime()))
.disposeTime(diff)
.disposeIp(k.getDisposeIp())
.currentStatus(taskService.taskIsRunning(k) ? 1 : 0)
.currentStatus(taskService.taskIsRunning(k) ? 0 : 1)
.flowAttack(0)
.flowClean(0)
.build();