[virt-tools-list] [PATCH] virt-manager: Fix VNC connection on hypervisor without GraphicsFD
Mikhail Feoktistov
mfeoktistov at virtuozzo.com
Tue Mar 29 13:20:35 UTC 2016
Hello Cole!
Can you look at this patch? What do you think?
On 26.03.2016 13:02, Mikhail Feoktistov wrote:
> Function virDomainOpenGraphicsFD() from libvirt can return -1
> But in this case libvirt-python will raise an exception.
> We should handle this case and return -1 as invalid FD.
> In commit 5c451b64 Viewer._open() there is a code to open
> graphics console in case of invalid GraphicsFD.
> ---
> virtManager/domain.py | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/virtManager/domain.py b/virtManager/domain.py
> index 33535af..2c91314 100644
> --- a/virtManager/domain.py
> +++ b/virtManager/domain.py
> @@ -1117,7 +1117,11 @@ class vmmDomain(vmmLibvirtObject):
> return self._backend.openConsole(devname, stream, flags)
>
> def open_graphics_fd(self):
> - return self._backend.openGraphicsFD(0)
> + try:
> + fd = self._backend.openGraphicsFD(0)
> + except libvirt.libvirtError:
> + fd = -1
> + return fd
>
> def refresh_snapshots(self):
> self._snapshot_list = None
More information about the virt-tools-list
mailing list