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.
2 parents a09508f + 36ba9a9 commit 677bea4Copy full SHA for 677bea4
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# Changes in IPython kernel
2
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
+
5
## 5.5
6
7
### 5.5.0
ipykernel/kernelbase.py
@@ -120,7 +120,7 @@ def _default_ident(self):
120
_poll_interval = Float(0.01).tag(config=True)
121
122
stop_on_error_timeout = Float(
123
- 0.1,
+ 0.0,
124
config=True,
125
help="""time (in seconds) to wait for messages to arrive
126
when aborting queued requests after an error.
0 commit comments