summaryrefslogtreecommitdiff
path: root/virtManager/object/domain.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-01-24 16:48:39 -0500
committerCole Robinson <crobinso@redhat.com>2020-01-24 17:04:29 -0500
commitbd82ef65292cc47cffc27b8f67d7987679c61bf3 (patch)
treedc70ac66325abe04849ac93240ad8e0938e78d31 /virtManager/object/domain.py
parentee9f93074bf74bd2e4c5177d750e7c438c7790cf (diff)
downloadvirt-manager-bd82ef65292cc47cffc27b8f67d7987679c61bf3.tar.gz
virtManager: Remove spice tlsport UI
This was discussed here: https://www.redhat.com/archives/virt-tools-list/2019-June/msg00117.html tlsPort is an advanced config feature. With the XML editing support, it's less important to have this as a first class UI element. Users that know they need this setting can set it directly in the XML Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'virtManager/object/domain.py')
-rw-r--r--virtManager/object/domain.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/virtManager/object/domain.py b/virtManager/object/domain.py
index 9d8a3492..789774af 100644
--- a/virtManager/object/domain.py
+++ b/virtManager/object/domain.py
@@ -774,7 +774,7 @@ class vmmDomain(vmmLibvirtObject):
self._redefine_xmlobj(xmlobj)
def define_graphics(self, devobj, do_hotplug,
- listen=_SENTINEL, addr=_SENTINEL, port=_SENTINEL, tlsport=_SENTINEL,
+ listen=_SENTINEL, addr=_SENTINEL, port=_SENTINEL,
passwd=_SENTINEL, gtype=_SENTINEL,
gl=_SENTINEL, rendernode=_SENTINEL):
xmlobj = self._make_xmlobj_to_define()
@@ -789,8 +789,6 @@ class vmmDomain(vmmLibvirtObject):
editdev.listen = addr
if port != _SENTINEL:
editdev.port = port
- if tlsport != _SENTINEL:
- editdev.tlsPort = tlsport
if passwd != _SENTINEL:
editdev.passwd = passwd
if gtype != _SENTINEL: