We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4098a commit 65a7d99Copy full SHA for 65a7d99
src/eventloop.jl
@@ -50,6 +50,9 @@ function eventloop(socket, kernel)
50
# chooses to interrupt the kernel; don't crash on this
51
if isa(e, InterruptException)
52
eventloop(socket, kernel)
53
+ elseif isa(e, ZMQ.StateError)
54
+ # This is almost certainly because of a closed socket
55
+ return
56
else
57
rethrow()
58
end
0 commit comments