You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to retry starting a session when starting a session fails (#9227)
For #9187
When starting a new session fails (e.g. due to bunked kernel or the like), allow user to recover by starting a new session with a different kernel.
* Add ability to start retry starting sessions with different kernel
* Fix message
* Fixes
* Address code review comments
* Fix tests
* Update labels
"python.command.python.viewLanguageServerOutput.title": "Show Language Server Output",
18
19
"python.command.python.selectAndRunTestMethod.title": "Run Test Method ...",
19
20
"python.command.python.selectAndDebugTestMethod.title": "Debug Test Method ...",
@@ -221,6 +222,7 @@
221
222
"DataScience.exportingFormat": "Exporting {0}",
222
223
"DataScience.exportCancel": "Cancel",
223
224
"Common.canceled": "Canceled",
225
+
"Common.cancel": "Cancel",
224
226
"DataScience.importChangeDirectoryComment": "{0} Change working directory from the workspace root to the ipynb file location. Turn this addition off with the DataScience.changeDirOnImportExport setting",
225
227
"DataScience.exportChangeDirectoryComment": "# Change directory to VSCode workspace root so that relative path loads work correctly. Turn this addition off with the DataScience.changeDirOnImportExport setting",
"DataScience.fallBackToRegisterAndUseActiveInterpeterAsKernel": "Couldn't find kernel '{0}' that the notebook was created with. Registering a new kernel using the current interpreter.",
398
400
"DataScience.fallBackToPromptToUseActiveInterpreterOrSelectAKernel": "Couldn't find kernel '{0}' that the notebook was created with.",
399
401
"DataScience.selectKernel": "Select a Kernel",
402
+
"DataScience.selectDifferentKernel": "Select a different Kernel",
400
403
"products.installingModule": "Installing {0}",
401
-
"DataScience.switchingKernelProgress": "Switching kernel to '{0}'"
404
+
"DataScience.switchingKernelProgress": "Switching kernel to '{0}'",
405
+
"DataScience.sessionStartFailedWithKernel": "Failed to start a session for the Kernel '{0}'. \nView Jupyter [log](command:{1}) for further details."
exportconstrestartingKernelFailed=localize('DataScience.restartingKernelFailed','Kernel restart failed. Jupyter server is hung. Please reload VS code.');
166
167
exportconstinterruptingKernelFailed=localize('DataScience.interruptingKernelFailed','Kernel interrupt failed. Jupyter server is hung. Please reload VS code.');
167
-
168
+
exportconstsessionStartFailedWithKernel=localize('DataScience.sessionStartFailedWithKernel','Failed to start a session for the Kernel \'{0}\'. \nView Jupyter [log](command:{1}) for further details.');
exportconstpandasTooOldForViewingFormat=localize('DataScience.pandasTooOldForViewingFormat','Python package \'pandas\' is version {0}. Version 0.20 or greater is required for viewing data.');
233
235
exportconstpandasRequiredForViewing=localize('DataScience.pandasRequiredForViewing','Python package \'pandas\' is required for viewing data.');
0 commit comments