File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -332,6 +332,8 @@ type ConnectReply =
332332
333333type CommOpen = obj
334334
335+ type CommInfoRequest = obj
336+
335337type KernelRequest = obj
336338
337339type KernelReply_LanguageInfo =
@@ -498,6 +500,7 @@ type ShellMessage =
498500
499501 // comm open?
500502 | CommOpen of CommOpen
503+ | CommInfoRequest of CommInfoRequest
501504
502505 // kernel info
503506 | KernelRequest of KernelRequest
@@ -561,4 +564,6 @@ module ShellMessages =
561564 //Jupyter 4.x support, do we need to do anything with this?
562565 | " comm_open" -> CommOpen ( JsonConvert.DeserializeObject< CommOpen>( messageJson))
563566
567+ | " comm_info_request" -> CommInfoRequest ( JsonConvert.DeserializeObject< CommInfoRequest>( messageJson))
568+
564569 | _ -> failwith ( " Unsupported messageType: " + messageType)
You can’t perform that action at this time.
0 commit comments