Skip to content

Commit

Permalink
Stop using deprecated recv_multipart when using in-process socket.
Browse files Browse the repository at this point in the history
Found while working on napari/napari#3314

This should be the right fix, as BackgroundSocket is used only
in inprocess kernel, and while in general iopub_socket looks like it
can be `Any()` for this particular class we have a trait saying
iopub_socket has to be a BackgroundSocket

The recv in jupyter_client side (which is called by the line I change
here) is

    def recv(self, socket, mode=zmq.NOBLOCK, content=True, copy=True):
        """Receive and unpack a message.

        Parameters
        ----------
        socket : ZMQStream or Socket
            The socket or stream to use in receiving.

        Returns
        -------
        [idents], msg
            [idents] is a list of idents and msg is a nested message dict of
            same format as self.msg returns.
        """
        if isinstance(socket, ZMQStream):
            socket = socket.socket
        try:
            msg_list = socket.recv_multipart(mode, copy=copy) # this will trigger deprecation warning
        except zmq.ZMQError as e:
            ...

And I doubt we want to make that aware of background socket.
  • Loading branch information
Carreau committed Sep 6, 2021
1 parent cf2d56e commit 168548e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/inprocess/ipkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def _redirected_io(self):
def _io_dispatch(self, change):
""" Called when a message is sent to the IO socket.
"""
ident, msg = self.session.recv(self.iopub_socket, copy=False)
ident, msg = self.session.recv(self.iopub_socket.io_thread.socket, copy=False)
for frontend in self.frontends:
frontend.iopub_channel.call_handlers(msg)

Expand Down

0 comments on commit 168548e

Please sign in to comment.