virt-manager/virtinst-refresh_before_fetch_pool.patch
Charles Arnold 47ffb48dd8 - Update to virt-manager 1.1.0
virt-manager-1.1.0.tar.bz2
  * Switch to libosinfo as OS metadata database (Giuseppe Scrivano)
  * Use libosinfo for OS detection from CDROM media labels (Giuseppe Scrivano)
  * Use libosinfo for improved OS defaults, like recommended disk size (Giuseppe Scrivano)
  * virt-image tool has been removed, as previously announced
  * Enable Hyper-V enlightenments for Windows VMs
  * Revert virtio-console default, back to plain serial console
  * Experimental q35 option in new VM ‘customize’ dialog
  * UI for virtual network QoS settings (Giuseppe Scrivano)
  * virt-install: –disk discard= support (Jim Minter)
  * addhardware: Add spiceport UI (Marc-André Lureau)
  * virt-install: –events on_poweroff etc. support (Chen Hanxiao)
  * cli –network portgroup= support and UI support
  * cli –boot initargs= and UI support
  * addhardware: allow setting controller model (Chen Hanxiao)
  * virt-install: support setting hugepage options (Chen Hanxiao)
- Drop upstream patches and old tarball
  virt-manager-1.0.1.tar.bz2
  5332ee4d-enable-media-detection-for-ISO-images.patch
  53341e7e-hide-hardware-removal-for-non-devices.patch
  53342f31-set-right-ip-address-for-ipv6.patch
  53375bad-raise-value-error-when-no-ipaddr-set.patch
  53388de2-show-port-number-for-active-autoport-VM.patch
  53397ae0-check-ip-address-format.patch
  53399b45-hook-into-domain-balloon-event.patch
  533d708d-fix-showing-vcpus-values.patch
  533d7602-fix-changing-graphics-type.patch
  533d7be7-clarify-iscsi-IQN-fields.patch
  5345682c-addstorage-remove-whitespace-for-storage-path.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=207
2014-10-29 17:03:15 +00:00

39 lines
1.5 KiB
Diff

Refresh pools status before fetch_pools.
Currently, when connecting to hypervisor, if there are pools active
but in fact target path already deleted (or for other reasons the
pool is not working), libvirtd not refresh status yet, fetch_pools
will fail, that will cause "connecting to hypervisor" process
reporting error and exit. The whole connection work failed.
With the patch, always refresh pool status before fetch pools. Let
the libvirtd pool status reflect the reality, avoid the non-synced
status affects the hypervisor connection.
Signed-off-by: Chunyan Liu <cyliu@suse.com>
Index: virt-manager-1.1.0/virtinst/pollhelpers.py
===================================================================
--- virt-manager-1.1.0.orig/virtinst/pollhelpers.py
+++ virt-manager-1.1.0/virtinst/pollhelpers.py
@@ -133,6 +133,19 @@ def fetch_pools(backend, origmap, build_
if backend.check_support(
backend.SUPPORT_CONN_LISTALLSTORAGEPOOLS) and not _force_old_poll:
+
+ # Refresh pools before poll_helper. For those
+ # 'active' but target path not exist (or other reasons
+ # causing the pool not working), but libvirtd not
+ # refresh the status, this will make it refreshed
+ # and mark that pool as 'inactive'.
+ objs = backend.listAllStoragePools()
+ for obj in objs:
+ try:
+ obj.refresh(0)
+ except Exception, e:
+ pass
+
return _new_poll_helper(origmap, name,
backend.listAllStoragePools, build_func)
else: