summaryrefslogtreecommitdiff
path: root/virtManager/object/domain.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-08-27 15:21:29 -0400
committerCole Robinson <crobinso@redhat.com>2020-08-27 19:41:28 -0400
commitb764773cfeb827f8b4d2915fc6f4856ecc09f6f8 (patch)
tree8e032e0acbb0c60c3ad3903d50e92208a723ad42 /virtManager/object/domain.py
parenteda08f4c794b04ff6c1640dfd900001851ba5be1 (diff)
downloadvirt-manager-b764773cfeb827f8b4d2915fc6f4856ecc09f6f8.tar.gz
domain: Remove qemu VNC SKIPAUTH bug workaround
This was added in cb182f7e3 in Mar 2017 to work around a bug in qemu 2.9. This bug only affects the case of virt-manager running locally with that version, which after three years should be rare to non-existent. Remove the workaround Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'virtManager/object/domain.py')
-rw-r--r--virtManager/object/domain.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/virtManager/object/domain.py b/virtManager/object/domain.py
index f212408e..c3db1335 100644
--- a/virtManager/object/domain.py
+++ b/virtManager/object/domain.py
@@ -984,15 +984,6 @@ class vmmDomain(vmmLibvirtObject):
def open_graphics_fd(self):
flags = 0
-
- # Ugly workaround for VNC bug where the display cannot be opened
- # if the listen type is "none". This bug was fixed in QEMU-2.9.0.
- graphics = self.xmlobj.devices.graphics[0]
- if (graphics.type == "vnc" and
- graphics.get_first_listen_type() == "none" and
- not self.conn.support.conn_vnc_none_auth()):
- flags = libvirt.VIR_DOMAIN_OPEN_GRAPHICS_SKIPAUTH
-
return self._backend.openGraphicsFD(0, flags)
def list_snapshots(self):