iSCSI support, audit wizard, CSV improvements, bug fixes #1

Merged
scott merged 9 commits from devel into main 2026-03-05 16:08:43 -05:00
Showing only changes of commit 1116f2e17a - Show all commits

View File

@@ -316,7 +316,7 @@ async def _migrate_iscsi_portals(
log.error(msg); summary.errors.append(msg); return
def _ip_set(p: dict) -> frozenset:
return frozenset((l["ip"], l["port"]) for l in p.get("listen", []))
return frozenset(l["ip"] for l in p.get("listen", []))
existing_ip_sets = [(_ip_set(p), p["id"]) for p in existing]
log.info(" Destination has %d existing portal(s).", len(existing))