Show More
@@ -20,7 +20,7 b' from tornado import web' | |||||
20 |
|
20 | |||
21 | from IPython.kernel.multikernelmanager import MultiKernelManager |
|
21 | from IPython.kernel.multikernelmanager import MultiKernelManager | |
22 | from IPython.utils.traitlets import ( |
|
22 | from IPython.utils.traitlets import ( | |
23 |
Dict, List, Unicode, |
|
23 | Dict, List, Unicode, Integer, | |
24 | ) |
|
24 | ) | |
25 |
|
25 | |||
26 | #----------------------------------------------------------------------------- |
|
26 | #----------------------------------------------------------------------------- | |
@@ -33,9 +33,6 b' class MappingKernelManager(MultiKernelManager):' | |||||
33 |
|
33 | |||
34 | kernel_argv = List(Unicode) |
|
34 | kernel_argv = List(Unicode) | |
35 |
|
35 | |||
36 | time_to_dead = Float(3.0, config=True, help="""Kernel heartbeat interval in seconds.""") |
|
|||
37 | first_beat = Float(5.0, config=True, help="Delay (in seconds) before sending first heartbeat.") |
|
|||
38 |
|
||||
39 | max_msg_size = Integer(65536, config=True, help=""" |
|
36 | max_msg_size = Integer(65536, config=True, help=""" | |
40 | The max raw message size accepted from the browser |
|
37 | The max raw message size accepted from the browser | |
41 | over a WebSocket connection. |
|
38 | over a WebSocket connection. |
General Comments 0
You need to be logged in to leave comments.
Login now