Fix name of RPC service

This commit is contained in:
JP Ungaretti 2022-04-14 14:55:29 -05:00
parent 9fd5923b9b
commit 33a1b95dbf

View file

@ -114,7 +114,7 @@ func (s *Session) StartJupyterServer(ctx context.Context) (int, string, error) {
ServerUrl string `json:"serverUrl"`
}
if err := s.rpc.do(ctx, "IJupyterServerHostService.getRunningServers", []string{}, &response); err != nil {
if err := s.rpc.do(ctx, "IJupyterServerHostService.getRunningServer", []string{}, &response); err != nil {
return 0, "", err
}