Loading src/device/service/Tools.py +2 −1 Original line number Diff line number Diff line Loading @@ -300,7 +300,8 @@ def populate_endpoints( for dev_uuid, sub_device in new_sub_devices.items(): predecesors = graph.setdefault(dev_uuid, set()) ctrl_uuid = get_device_controller_uuid(sub_device) if ctrl_uuid is None: continue if ctrl_uuid is None: continue # sub_device has no controller if ctrl_uuid == device_uuid: continue # current device has no dependencies predecesors.add(ctrl_uuid) try: Loading Loading
src/device/service/Tools.py +2 −1 Original line number Diff line number Diff line Loading @@ -300,7 +300,8 @@ def populate_endpoints( for dev_uuid, sub_device in new_sub_devices.items(): predecesors = graph.setdefault(dev_uuid, set()) ctrl_uuid = get_device_controller_uuid(sub_device) if ctrl_uuid is None: continue if ctrl_uuid is None: continue # sub_device has no controller if ctrl_uuid == device_uuid: continue # current device has no dependencies predecesors.add(ctrl_uuid) try: Loading