File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ var logger *log.Logger
1515
1616// ConnectionInfo stores the contents of the kernel connection file created by Jupyter.
1717type ConnectionInfo struct {
18- SignatureScheme string
19- Transport string
20- StdinPort int
21- ControlPort int
22- IOPubPort int
23- HBPort int
24- ShellPort int
25- Key string
26- IP string
18+ SignatureScheme string `json:"signature_scheme"`
19+ Transport string `json:"transport"`
20+ StdinPort int `json:"stdin_port"`
21+ ControlPort int `json:"control_port"`
22+ IOPubPort int `json:"iopub_port"`
23+ HBPort int `json:"hb_port"`
24+ ShellPort int `json:"shell_port"`
25+ Key string `json:"key"`
26+ IP string `json:"ip"`
2727}
2828
2929// SocketGroup holds the sockets needed to communicate with the kernel, and
You can’t perform that action at this time.
0 commit comments