Skip to content

Commit 32e6e9c

Browse files
authored
Merge pull request #611 from SylvainCorlay/flush-control-upon-shutdown
Flush control stream upon shutdown
2 parents 703510e + ec0c746 commit 32e6e9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipykernel/kernelbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,4 +937,4 @@ def _at_shutdown(self):
937937
if self._shutdown_message is not None:
938938
self.session.send(self.iopub_socket, self._shutdown_message, ident=self._topic('shutdown'))
939939
self.log.debug("%s", self._shutdown_message)
940-
self.shell_stream.flush(zmq.POLLOUT)
940+
self.control_stream.flush(zmq.POLLOUT)

0 commit comments

Comments
 (0)