d8b1788c9f
virt-manager-2.2.1.tar.bz2 * CVE-2019-10183: Replace –unattended user-password and admin-password with user-password-file and admin-password-file (Fabiano Fidêncio) * Consistent –memballoon default across non-x86 (Andrea Bolognani) * virt-install: add –numatune memnode.* (Athina Plaskasoviti) * Drop hard dep on gtksourceview4, gtksourceview3 is fine as well - Drop patches no longer needed 033e9702-xmleditor-Handle-gtksourceview3-as-well-as-gtksourceview4.patch 51d28f04-unattended-Dont-log-user-admin-passwords.patch 5312a961-virt-install-Revive-wait-0-as-alias-for-noautoconsole.patch 58c68764-unattended-Read-the-passwords-from-a-file.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=477
18 lines
779 B
Diff
18 lines
779 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
|
|
@@ -1002,7 +1002,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)):
|