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
I believe the RuntimeError predates the existence of TimeoutError, added in Python 3.3. It does make sense to use TimeoutError, though changing it now would technically be a breaking change, as code that caught this error would no longer catch it.
This is more of a question than a bug report.
In
jupyter_client/jupyter_client/client.py
Line 178 in 80c6367
jupyter_client/jupyter_client/client.py
Line 207 in 80c6367
RuntimeError
is raised when a timeout occurs, rather than aTimeoutError
.However in other places, such as
jupyter_client/jupyter_client/client.py
Line 232 in 80c6367
jupyter_client/jupyter_client/client.py
Line 550 in 80c6367
TimeoutError
is raised.Is it intentional that a
RuntimeError
is raised during thewait_for_ready
stage instead of aTimeoutError
?The text was updated successfully, but these errors were encountered: