-
Notifications
You must be signed in to change notification settings - Fork 294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support picking IJupyterServerUriInfo in command jupyter.selectjupyteruri #9683
Comments
This is related to the same work we need for Azure ML compute work. https://github.com/microsoft/vscode-jupyter-internal/issues/270 |
Details 1
Questions:
Multiple Remotes (dead kernels)What if we have a cached active kernel and the 3rd party extension has been uninstalled? To get things working, we'd need to keep track of all of the valid Ids & handles. This way, we can remove items from teh cache easily by filtering them based on what's in the global memento (which won't require any awaits or the like). 3rd party extensionsWhen displaying errors about a remote jupyter server. Should we let the user know what extension should be looked at. |
AFAIK it's not working like this today. The handle is stored by us in the encrypted storage. We always give it to the 3rd party extension to provide us with a URI. So they can generate a new URI if they want. |
Additionally I believe we use that handle to find the extension to activate in order to ask them for a new URI. |
We always give it to the 3rd party extension to provide us with a URI. So they can generate a new URI if they want.
We already have code in place to handle that, we have code that calls |
The use of the command isn't recommended. |
As part of the lazy kernel exploration microsoft/vscode#146942 (comment) , we want to support
IJupyterServerUriInfo
in commandjupyter.selectjupyteruri
. With this supportapi.registerRemoteServerProvider
The text was updated successfully, but these errors were encountered: