ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
21 lines
857 B
Diff
21 lines
857 B
Diff
Index: virt-manager-0.10.0/virtManager/domain.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/domain.py
|
|
+++ virt-manager-0.10.0/virtManager/domain.py
|
|
@@ -1722,7 +1722,14 @@ class vmmDomain(vmmLibvirtObject):
|
|
# Invalidate cached values
|
|
self._invalidate_xml()
|
|
|
|
- info = self._backend.info()
|
|
+ try:
|
|
+ info = self._backend.info()
|
|
+ except:
|
|
+ self._backend = self.conn.vmm.lookupByName(self.get_name())
|
|
+ info = self._backend.info()
|
|
+ if info[0] == libvirt.VIR_DOMAIN_NOSTATE:
|
|
+ self._backend = self.conn.vmm.lookupByName(self.get_name())
|
|
+ info = self._backend.info()
|
|
expected = self.config.get_stats_history_length()
|
|
current = len(self.record)
|
|
if current > expected:
|