8b3b1b9096
848123e6-fix-memory-stats-for-shutoff-VM.patch ebcb7c06-fix-exception-when-the-address-is-not-an-IP.patch c4d26d16-fix-VM-polling-on-old-libvirt.patch ac2be796-do-not-throw-exception-if-volume-or-pool-dont-exist.patch 88e18c86-fix-sending-net-removed-signal.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=231
21 lines
730 B
Diff
21 lines
730 B
Diff
Subject: pollhelpers: Fix VM polling on old libvirt
|
|
From: Michał Kępień michal.kepien@nask.pl Thu May 7 11:10:20 2015 -0400
|
|
Date: Thu May 7 11:10:20 2015 -0400:
|
|
Git: c4d26d16a65e0ce6b88323e13669c7c388397d7f
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1219443
|
|
|
|
diff --git a/virtinst/pollhelpers.py b/virtinst/pollhelpers.py
|
|
index 3eeada4..dafd079 100644
|
|
--- a/virtinst/pollhelpers.py
|
|
+++ b/virtinst/pollhelpers.py
|
|
@@ -268,7 +268,7 @@ def _old_fetch_vms(backend, origmap, build_func):
|
|
except:
|
|
logging.exception("Couldn't fetch domain '%s'", name)
|
|
|
|
- return (origmap, new, current)
|
|
+ return (origmap.values(), new.values(), current.values())
|
|
|
|
|
|
def fetch_vms(backend, origmap, build_func):
|