Skip to content
Snippets Groups Projects
Commit 282ffde4 authored by Chris Sewell's avatar Chris Sewell
Browse files

:bug: FIX: Allow execution timeout to be -1 in validation

parent e0c297e6
No related branches found
No related tags found
No related merge requests found
...@@ -148,7 +148,7 @@ execute: ...@@ -148,7 +148,7 @@ execute:
Execution timeout defines the maximum time (in seconds) each notebook cell is allowed to run. Execution timeout defines the maximum time (in seconds) each notebook cell is allowed to run.
If the execution takes longer an exception will be raised. If the execution takes longer an exception will be raised.
The default is 30 seconds, so in cases of long-running cells you may want to specify an higher value. The default is 30 seconds, so in cases of long-running cells you may want to specify an higher value.
The timeout option can also be set to `None` or -1 to remove any restriction on execution time. The timeout option can also be set to -1, to remove any restriction on execution time.
You can set the timeout for all notebook execution in your `_config.yml`: You can set the timeout for all notebook execution in your `_config.yml`:
......
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
}, },
"timeout": { "timeout": {
"type": "number", "type": "number",
"minimum": 0, "minimum": -1,
"default": 30 "default": 30
}, },
"allow_errors": { "allow_errors": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment