4f703846c7
virt-manager-1.4.3.tar.bz2 * Improve install of debian/ubuntu non-x86 media (Viktor Mihajlovski, Andrew Wong) * New virt-install –graphics listen.* (Pavel Hrdina) * New virt-install –disk snapshot_policy= (Pavel Hrdina) * New virt-install –cpu cache.* (Lin Ma) * Several bug fixes - Dropped the following patch contained in new tarball e902fa55-force-binary-mode-with-FTP-servers.patch virt-manager-1.4.2.tar.bz2 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=369
18 lines
793 B
Diff
18 lines
793 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.4.3/virtManager/connection.py
|
|
===================================================================
|
|
--- virt-manager-1.4.3.orig/virtManager/connection.py
|
|
+++ virt-manager-1.4.3/virtManager/connection.py
|
|
@@ -1086,7 +1086,7 @@ class vmmConnection(vmmGObject):
|
|
self.caps.get_cpu_values(self.caps.host.cpu.arch)
|
|
|
|
try:
|
|
- self._backend.setKeepAlive(20, 1)
|
|
+ self._backend.setKeepAlive(20, 10)
|
|
except Exception as e:
|
|
if (type(e) is not AttributeError and
|
|
not util.is_error_nosupport(e)):
|