Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proxstar/vnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def open_vnc_session(vmid, node, proxmox):
Returns: Ticket to use as the noVNC password, and a port.
"""
# TODO (willnilges): Report errors
params = {'websocket': '1', 'generate-password': '0'}
params = {'websocket': '0', 'generate-password': '0'}
vncproxy_response_data = proxmox.nodes(node).qemu(str(vmid)).vncproxy.post(**params)

return urllib.parse.quote_plus(vncproxy_response_data['ticket']), vncproxy_response_data['port']
Loading