a18ef09a88
virtinst-add-default-rng-device.patch - Fix GUI failure to display addition of a second disk Dropped virtman-device-flags.patch - bnc#885380 - virt-install: by default generates raw format against various virtual disk formats virtinst-supported-disk-formats.patch virtman-supported-disk-formats.patch - Dropped virtinst-qed.patch, virtman-qed.patch - bnc#869026 - Build0198: Unable to complete install: 'XML error: No PCI buses available' virtman-add-s390x-arch-support.patch - Upstream bug fixes 53ac1f8d-createnet-validate-last-page-before-creating-network.patch 53ac1f8d-fix-show_err-typo.patch 53b39a13-dont-create-disk-images-world-readable-executable.patch 53b409bc-add-keep-alive-method-and-connection-check.patch 53b409bd-console-prevent-access-to-deleted-objects.patch 53b728c6-report-error-during-connection-bring-up.patch 53b728c6-connection-handle-unsupported-KeepAlive.patch 53bb1995-network-refresh-XML-definition-on-state-update.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=188
29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
Subject: connection: Handle unsupport KeepAlive (like test URIs)
|
|
From: Cole Robinson crobinso@redhat.com Fri Jul 4 17:43:24 2014 -0400
|
|
Date: Fri Jul 4 18:20:54 2014 -0400:
|
|
Git: aa823b5b58d689e2a69a9822fd462a1333d8d415
|
|
|
|
|
|
Index: virt-manager-1.0.1/virtManager/connection.py
|
|
===================================================================
|
|
--- virt-manager-1.0.1.orig/virtManager/connection.py
|
|
+++ virt-manager-1.0.1/virtManager/connection.py
|
|
@@ -1112,7 +1112,16 @@ class vmmConnection(vmmGObject):
|
|
logging.debug("%s capabilities:\n%s",
|
|
self.get_uri(), self.caps.xml)
|
|
self._add_conn_events()
|
|
- self._backend.setKeepAlive(20, 1)
|
|
+
|
|
+ try:
|
|
+ self._backend.setKeepAlive(20, 1)
|
|
+ except Exception, e:
|
|
+ if (type(e) is not AttributeError and
|
|
+ not util.is_error_nosupport(e)):
|
|
+ raise
|
|
+ logging.debug("Connection doesn't support KeepAlive, "
|
|
+ "skipping")
|
|
+
|
|
self.schedule_priority_tick(stats_update=True,
|
|
pollvm=True, pollnet=True,
|
|
pollpool=True, polliface=True,
|