virt-manager/virtman-increase-setKeepAlive-count.patch
Charles Arnold cc21dc861d - bsc#1157097 - PV guest on_reboot event be set to 'destroy' by
default
  virtinst-pvgrub2-bootloader.patch
- Rebased patches
  virtinst-change-location-for-grub_xen.patch
  virtman-increase-setKeepAlive-count.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=490
2019-11-22 20:56:15 +00:00

18 lines
777 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-2.2.1/virtManager/connection.py
===================================================================
--- virt-manager-2.2.1.orig/virtManager/connection.py
+++ virt-manager-2.2.1/virtManager/connection.py
@@ -995,7 +995,7 @@ class vmmConnection(vmmGObject):
self._add_conn_events()
try:
- self._backend.setKeepAlive(20, 1)
+ self._backend.setKeepAlive(20, 10)
except Exception as e:
if (not isinstance(e, AttributeError) and
not self.support.is_error_nosupport(e)):