virt-manager/virtman-increase-setKeepAlive-count.patch
Charles Arnold dd8a28d4b2 - bsc#937336 - ImportError using virt-install
virt-manager.spec
- Upstream bug fixes
  76bad650-fix-virt-xml-define-and-update.patch
  fc93e154-fix-udp-tcp-host-vs-mode-UI.patch
  34db1af7-fix-adding-iscsi-pools.patch
  77423e7a-connection-catch-more-errors-in-filter_nodedevs.patch
- fate#318394: Update to version 1.2.1

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=241
2015-07-10 14:37:12 +00:00

18 lines
774 B
Diff

References: bnc#892003
For very large memory VMs Xen takes a long time scrubbing memory
which causes the libvirt connection to timeout. Upstream was not
interested in making this a preferences option (4/11/2015)
Index: virt-manager-1.2.1/virtManager/connection.py
===================================================================
--- virt-manager-1.2.1.orig/virtManager/connection.py
+++ virt-manager-1.2.1/virtManager/connection.py
@@ -906,7 +906,7 @@ class vmmConnection(vmmGObject):
self.caps.get_cpu_values("x86_64")
try:
- self._backend.setKeepAlive(20, 1)
+ self._backend.setKeepAlive(20, 10)
except Exception, e:
if (type(e) is not AttributeError and
not util.is_error_nosupport(e)):