From ddce5a4e582ab92ea424d1cf8952ecc75d3621a0 2014-11-16 00:26:06 From: Carlos Cordoba Date: 2014-11-16 00:26:06 Subject: [PATCH] Websockets were not started correctly on QtWebKit 4 - Draft76 was added to support QtWebKit 4 (and hence PhantomJS) a little bit longer, but before this change kernel websockets failed to start on that platform. --- diff --git a/IPython/html/allow76.py b/IPython/html/allow76.py index 327fd8b..67e87e8 100644 --- a/IPython/html/allow76.py +++ b/IPython/html/allow76.py @@ -69,8 +69,7 @@ class AllowDraftWebSocketHandler(WebSocketHandler): self.stream.set_close_callback(self.on_connection_close) if self.request.headers.get("Sec-WebSocket-Version") in ("7", "8", "13"): - self.ws_connection = WebSocketProtocol13( - self, compression_options=self.get_compression_options()) + self.ws_connection = WebSocketProtocol13(self) self.ws_connection.accept_connection() #--------------- BEGIN PATCH ---------------- elif (self.allow_draft76() and