From 063953e3e4dbd4e97a6a3a00fa2ae981cf0fadbf Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Thu, 6 Sep 2012 16:31:00 +0200 Subject: [PATCH] Add missing argument to novncproxy websockify call Current websockify constructor in nova-novncproxy requires target_path to be explicitely set. This commit adds the missing parameter. Fixes bug 1031998. Change-Id: I05e346b5df5bc1501b55ff606fc4cefdda889d60 --- bin/nova-novncproxy | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/nova-novncproxy b/bin/nova-novncproxy index c4eb7a8be..3abaaa769 100755 --- a/bin/nova-novncproxy +++ b/bin/nova-novncproxy @@ -73,6 +73,7 @@ LOG = logging.getLogger(__name__) class NovaWebSocketProxy(websockify.WebSocketProxy): def __init__(self, *args, **kwargs): websockify.WebSocketProxy.__init__(self, unix_target=None, + target_cfg=None, ssl_target=None, *args, **kwargs) def new_client(self):