You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following error is logged on jupyter standard output:
2020/02/26 23:59:16 Error polling heartbeat channel: interrupted system call[I 23:59:18.358 NotebookApp] KernelRestarter: restarting kernel (1/5), keep random ports
I suspect it's due to the Go runtime exposing more EINTR errors on interrupted system calls,
and libzmq (or some other code) not properly handling them - POSIX specs state that system calls can (and most of the times should) be called again when it happens.
Maybe switching to go-zeromq/zmq4 (see pull request #195) could fix this?