Eduardo has uploaded a new change for review. Change subject: Fix BZ#846323 fix. ......................................................................
Fix BZ#846323 fix. Change-Id: Ic470b76d6b72f2b8f5178839f4b2475d2280c198 Signed-off-by: Eduardo <[email protected]> --- M vdsm/storage/lvm.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/41/8141/1 diff --git a/vdsm/storage/lvm.py b/vdsm/storage/lvm.py index 13cf4cf..78c846a 100644 --- a/vdsm/storage/lvm.py +++ b/vdsm/storage/lvm.py @@ -861,7 +861,7 @@ def removeVG(vgName): cmd = ["vgremove", "-f", vgName] rc, out, err = _lvminfo.cmd(cmd) - pvs = tuple(pv for pv in _lvminfo._pvs.iterkeys() + pvs = tuple(pvName for pvName, pv in _lvminfo._pvs.iteritems() if not isinstance(pv, Stub) and pv.vg_name == vgName) # PVS needs to be reloaded anyhow: if vg is removed they are staled, # if vg remove failed, something must be wrong with devices and we want -- To view, visit http://gerrit.ovirt.org/8141 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic470b76d6b72f2b8f5178839f4b2475d2280c198 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Eduardo <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
