From acbbc60e0931ca0800007389bb2316ba98b438ff Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Fri, 15 Jan 2016 10:03:02 -0800 Subject: [PATCH] Change the window length to 1s --- notebook/notebookapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 98c7332b0..cb0313b7c 100644 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -798,7 +798,7 @@ class NotebookApp(JupyterApp): Maximum rate at which messages can be sent on iopub before they are limited.""") - limit_window = Float(0.1, config=True, help="""(sec) Time window used to + limit_window = Float(1.0, config=True, help="""(sec) Time window used to check the message and data rate limits.""") def parse_command_line(self, argv=None):