@@ -1178,19 +1178,19 @@ NotebookNotary.store_factory : Callable
1178
1178
A callable returning the storage backend for notebook signatures.
1179
1179
The default uses an SQLite database.
1180
1180
1181
- GatewayKernelManager .allow_tracebacks : Bool
1181
+ GatewayMappingKernelManager .allow_tracebacks : Bool
1182
1182
Default: ``True ``
1183
1183
1184
1184
Whether to send tracebacks to clients on exceptions.
1185
1185
1186
- GatewayKernelManager .allowed_message_types : List
1186
+ GatewayMappingKernelManager .allowed_message_types : List
1187
1187
Default: ``[] ``
1188
1188
1189
1189
White list of allowed kernel message types.
1190
1190
When the list is empty, all message types are allowed.
1191
1191
1192
1192
1193
- GatewayKernelManager .buffer_offline_messages : Bool
1193
+ GatewayMappingKernelManager .buffer_offline_messages : Bool
1194
1194
Default: ``True ``
1195
1195
1196
1196
Whether messages from kernels whose frontends have disconnected should be buffered in-memory.
@@ -1202,36 +1202,36 @@ GatewayKernelManager.buffer_offline_messages : Bool
1202
1202
no frontends are connected.
1203
1203
1204
1204
1205
- GatewayKernelManager .cull_busy : Bool
1205
+ GatewayMappingKernelManager .cull_busy : Bool
1206
1206
Default: ``False ``
1207
1207
1208
1208
Whether to consider culling kernels which are busy.
1209
1209
Only effective if cull_idle_timeout > 0.
1210
1210
1211
- GatewayKernelManager .cull_connected : Bool
1211
+ GatewayMappingKernelManager .cull_connected : Bool
1212
1212
Default: ``False ``
1213
1213
1214
1214
Whether to consider culling kernels which have one or more connections.
1215
1215
Only effective if cull_idle_timeout > 0.
1216
1216
1217
- GatewayKernelManager .cull_idle_timeout : Int
1217
+ GatewayMappingKernelManager .cull_idle_timeout : Int
1218
1218
Default: ``0 ``
1219
1219
1220
1220
Timeout (in seconds) after which a kernel is considered idle and ready to be culled.
1221
1221
Values of 0 or lower disable culling. Very short timeouts may result in kernels being culled
1222
1222
for users with poor network connections.
1223
1223
1224
- GatewayKernelManager .cull_interval : Int
1224
+ GatewayMappingKernelManager .cull_interval : Int
1225
1225
Default: ``300 ``
1226
1226
1227
1227
The interval (in seconds) on which to check for idle kernels exceeding the cull timeout value.
1228
1228
1229
- GatewayKernelManager .default_kernel_name : Unicode
1229
+ GatewayMappingKernelManager .default_kernel_name : Unicode
1230
1230
Default: ``'python3' ``
1231
1231
1232
1232
The name of the default kernel to start
1233
1233
1234
- GatewayKernelManager .kernel_info_timeout : Float
1234
+ GatewayMappingKernelManager .kernel_info_timeout : Float
1235
1235
Default: ``60 ``
1236
1236
1237
1237
Timeout for giving up on a kernel (in seconds).
@@ -1244,24 +1244,24 @@ GatewayKernelManager.kernel_info_timeout : Float
1244
1244
and the ZMQChannelsHandler (which handles the startup).
1245
1245
1246
1246
1247
- GatewayKernelManager .kernel_manager_class : DottedObjectName
1247
+ GatewayMappingKernelManager .kernel_manager_class : DottedObjectName
1248
1248
Default: ``'jupyter_client.ioloop.IOLoopKernelManager' ``
1249
1249
1250
1250
The kernel manager class. This is configurable to allow
1251
1251
subclassing of the KernelManager for customized behavior.
1252
1252
1253
1253
1254
- GatewayKernelManager .root_dir : Unicode
1254
+ GatewayMappingKernelManager .root_dir : Unicode
1255
1255
Default: ``'' ``
1256
1256
1257
1257
No description
1258
1258
1259
- GatewayKernelManager .shared_context : Bool
1259
+ GatewayMappingKernelManager .shared_context : Bool
1260
1260
Default: ``True ``
1261
1261
1262
1262
Share a single zmq.Context to talk to all my kernels
1263
1263
1264
- GatewayKernelManager .traceback_replacement_message : Unicode
1264
+ GatewayMappingKernelManager .traceback_replacement_message : Unicode
1265
1265
Default: ``'An exception occurred at runtime, which is not shown due to ... ``
1266
1266
1267
1267
Message to print when allow_tracebacks is False, and an exception occurs
0 commit comments