File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
jupyter_server/services/kernels/connection Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ def replay(value):
349
349
self .log .info ("Replaying %s buffered messages" , len (replay_buffer ))
350
350
for channel , msg_list in replay_buffer :
351
351
stream = self .channels [channel ]
352
- self ._on_zmq_reply (stream , msg_list )
352
+ self .handle_outgoing_message (stream , msg_list )
353
353
354
354
connected .add_done_callback (replay )
355
355
else :
@@ -379,7 +379,7 @@ def replay(value):
379
379
380
380
def subscribe (value ):
381
381
for _ , stream in self .channels .items ():
382
- stream .on_recv_stream (self ._on_zmq_reply )
382
+ stream .on_recv_stream (self .handle_outgoing_message )
383
383
384
384
connected .add_done_callback (subscribe )
385
385
ZMQChannelsWebsocketConnection ._open_sockets .add (self )
You can’t perform that action at this time.
0 commit comments