diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index beb93bfa2..82cfbd4cb 100755 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -915,15 +915,15 @@ class NotebookApp(JupyterApp): help="Reraise exceptions encountered loading server extensions?", ) - iopub_msg_rate_limit = Float(0, config=True, help="""(msg/sec) + iopub_msg_rate_limit = Float(1000, config=True, help="""(msg/sec) Maximum rate at which messages can be sent on iopub before they are limited.""") - iopub_data_rate_limit = Float(0, config=True, help="""(bytes/sec) + iopub_data_rate_limit = Float(1000000, config=True, help="""(bytes/sec) Maximum rate at which messages can be sent on iopub before they are limited.""") - rate_limit_window = Float(1.0, config=True, help="""(sec) Time window used to + rate_limit_window = Float(3, config=True, help="""(sec) Time window used to check the message and data rate limits.""") def parse_command_line(self, argv=None):