We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3cd011 commit 5902314Copy full SHA for 5902314
qubesadmin/device_protocol.py
@@ -1167,13 +1167,13 @@ def _deserialize(
1167
interfaces = properties["interfaces"]
1168
properties["interfaces"] = DeviceInterface.from_str_bulk(interfaces)
1169
1170
- if "parent_ident" in properties:
+ if "parent_port_id" in properties:
1171
properties["parent"] = Port(
1172
backend_domain=expected_device.backend_domain,
1173
- port_id=properties["parent_ident"],
+ port_id=properties["parent_port_id"],
1174
devclass=properties["parent_devclass"],
1175
)
1176
- del properties["parent_ident"]
+ del properties["parent_port_id"]
1177
del properties["parent_devclass"]
1178
1179
return cls(**properties)
0 commit comments