Fix RPC call

This commit is contained in:
JP Ungaretti 2022-03-03 01:21:35 +00:00 committed by GitHub
parent 9e3b955163
commit 3582090fb8

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.getRunningServers", []string{}, &response); err != nil {
return 0, "", err
}