parent
3e3635b912
commit
d7f1d79518
|
@ -466,6 +466,11 @@ public class DeviceTaskManagerServiceImpl implements DeviceTaskManagerService {
|
|||
// 获取设备
|
||||
AbilityInfo ai = disposeAbilityRouterService.getAbilityDevice(v.getDeviceId());
|
||||
|
||||
// 如果设备已经删除或者禁用,跳过处理
|
||||
if(ai == null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// 对处置IP生成一个唯一的操作标识符
|
||||
String taskStartKey = task.getDisposeObject() + "Start" + ai.getDev().getDeviceType().getDescription();
|
||||
|
||||
|
|
Loading…
Reference in New Issue