Skip to content

Commit 8ef4212

Browse files
authored
Increase stream limit to 200. (#149)
1 parent 10c176a commit 8ef4212

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server_documents/outputs/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class OutputsManager(LoggingConfigurable):
2020
_stream_count = Dict(default_value={})
2121

2222
outputs_path = Instance(PurePath, help="The local runtime dir")
23-
stream_limit = Int(default_value=10, config=True, allow_none=True)
23+
stream_limit = Int(default_value=200, config=True, allow_none=True)
2424

2525
@default("outputs_path")
2626
def _default_outputs_path(self):

0 commit comments

Comments
 (0)