@@ -116,7 +116,6 @@ def __init__(self, *args, **kwargs):
116
116
"rewrite_response" ,
117
117
tuple (),
118
118
)
119
- self .subprotocols = None
120
119
super ().__init__ (* args , ** kwargs )
121
120
122
121
# Support/use jupyter_server config arguments allow_origin and allow_origin_pat
@@ -493,7 +492,7 @@ async def start_websocket_connection():
493
492
request = request ,
494
493
on_message_callback = message_cb ,
495
494
on_ping_callback = ping_cb ,
496
- subprotocols = self .subprotocols ,
495
+ subprotocols = [ self .selected_subprotocol ] ,
497
496
resolver = resolver ,
498
497
)
499
498
self ._record_activity ()
@@ -531,12 +530,29 @@ def check_xsrf_cookie(self):
531
530
"""
532
531
533
532
def select_subprotocol (self , subprotocols ):
534
- """Select a single Sec-WebSocket-Protocol during handshake."""
535
- self .subprotocols = subprotocols
536
- if isinstance (subprotocols , list ) and subprotocols :
537
- self .log .debug (f"Client sent subprotocols: { subprotocols } " )
533
+ """
534
+ Select a single Sec-WebSocket-Protocol during handshake.
535
+
536
+ Note that this subprotocol selection should really be delegated to the
537
+ server we proxy to, but we don't! For this to happen, we would need to
538
+ delay accepting the handshake with the client until we have successfully
539
+ handshaked with the server.
540
+
541
+ Overrides `tornado.websocket.WebSocketHandler.select_subprotocol` that
542
+ includes an informative docstring:
543
+ https://github.com/tornadoweb/tornado/blob/v6.4.0/tornado/websocket.py#L337-L360.
544
+ """
545
+ if subprotocols :
546
+ # Tornado 5.0 doesn't pass an empty list, but a list with a an empty
547
+ # string element.
548
+ if subprotocols [0 ] == "" :
549
+ return None
550
+ self .log .debug (
551
+ f"Client sent subprotocols: { subprotocols } , selecting the first"
552
+ )
553
+ # TODO: warn if we select one out of multiple!
538
554
return subprotocols [0 ]
539
- return super (). select_subprotocol ( subprotocols )
555
+ return None
540
556
541
557
542
558
class LocalProxyHandler (ProxyHandler ):
0 commit comments