Skip to content

Commit 49c1af4

Browse files
committed
Merge pull request #618 from MSeal/defaultAbortTimeout
Changed default timeout to 0.0 seconds for stop_on_error_timeout
1 parent 648ca5a commit 49c1af4

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
@@ -110,7 +110,7 @@ def _default_ident(self):
110110
_poll_interval = Float(0.01).tag(config=True)
111111

112112
stop_on_error_timeout = Float(
113-
0.1,
113+
0.0,
114114
config=True,
115115
help="""time (in seconds) to wait for messages to arrive
116116
when aborting queued requests after an error.

0 commit comments

Comments
 (0)