Skip to content

Commit 677bea4

Browse files
authored
Merge pull request #618 from MSeal/defaultAbortTimeout
Changed default timeout to 0.0 seconds for stop_on_error_timeout
2 parents a09508f + 36ba9a9 commit 677bea4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changes in IPython kernel
22

3+
* Set `stop_on_error_timeout` default to 0.0 matching pre 5.5.0 default behavior with correctly working flag from 5.5.0.
4+
35
## 5.5
46

57
### 5.5.0

ipykernel/kernelbase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def _default_ident(self):
120120
_poll_interval = Float(0.01).tag(config=True)
121121

122122
stop_on_error_timeout = Float(
123-
0.1,
123+
0.0,
124124
config=True,
125125
help="""time (in seconds) to wait for messages to arrive
126126
when aborting queued requests after an error.

0 commit comments

Comments
 (0)