@@ -360,7 +360,12 @@ def write_stderr(error_message):
360
360
The notebook server will temporarily stop sending output
361
361
to the client in order to avoid crashing it.
362
362
To change this limit, set the config variable
363
- `--NotebookApp.iopub_msg_rate_limit`.""" ))
363
+ `--NotebookApp.iopub_msg_rate_limit`.
364
+
365
+ Current values:
366
+ NotebookApp.iopub_msg_rate_limit={} (msgs/sec)
367
+ NotebookApp.rate_limit_window={} (secs)
368
+ """ .format (self .iopub_msg_rate_limit , self .rate_limit_window )))
364
369
else :
365
370
# resume once we've got some headroom below the limit
366
371
if self ._iopub_msgs_exceeded and msg_rate < (0.8 * self .iopub_msg_rate_limit ):
@@ -377,7 +382,12 @@ def write_stderr(error_message):
377
382
The notebook server will temporarily stop sending output
378
383
to the client in order to avoid crashing it.
379
384
To change this limit, set the config variable
380
- `--NotebookApp.iopub_data_rate_limit`.""" ))
385
+ `--NotebookApp.iopub_data_rate_limit`.
386
+
387
+ Current values:
388
+ NotebookApp.iopub_data_rate_limit={} (bytes/sec)
389
+ NotebookApp.rate_limit_window={} (secs)
390
+ """ .format (self .iopub_data_rate_limit , self .rate_limit_window )))
381
391
else :
382
392
# resume once we've got some headroom below the limit
383
393
if self ._iopub_data_exceeded and data_rate < (0.8 * self .iopub_data_rate_limit ):
0 commit comments