You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From a fresh clone of noVNC calling a fresh websockify:
$ ./utils/launch.sh
readlink: illegal option -- f
usage: readlink [-n] [file ...]
Warning: could not find self.pem
Using local websockify at /Users/..../Desktop/noVNC/websockify/run
Starting webserver and WebSockets proxy on port 6080
Traceback (most recent call last):
File "/Users/.../Desktop/noVNC/websockify/run", line 5, in<module>websockify.websocketproxy.websockify_init()
File "/Users/..../Desktop/noVNC/websockify/websockify/websocketproxy.py", line 436, in websockify_init
server = WebSocketProxy(**opts.__dict__)
File "/Users/..../Desktop/noVNC/websockify/websockify/websocketproxy.py", line 232, in __init__
websocket.WebSocketServer.__init__(self, RequestHandlerClass, *args, **kwargs)
TypeError: __init__() got an unexpected keyword argument 'target_cfg'
Failed to start WebSockets proxy
WebSocketServer does not have any references to target_cfg.
The text was updated successfully, but these errors were encountered:
Previously, if no `target_cfg` flag was used, the `target_cfg` option
would not get removed from the opts dict, causing an error when it got
passed through to `WebSocketProxy`. Now we always remove it.
Fixes#168.
Previously, if no `target_cfg` flag was used, the `target_cfg` option
would not get removed from the opts dict, causing an error when it got
passed through to `WebSocketProxy`. Now we always remove it.
Fixes#168.
From a fresh clone of noVNC calling a fresh websockify:
WebSocketServer does not have any references to target_cfg.
The text was updated successfully, but these errors were encountered: