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 support for debugging on a remote jupyter server (microsoft#6549)
* First steps in remote support for debugging * Add comment to help mitigate mismatches * Change to local host for remote enable attach * Handle path mapping * Fix live share to attach * Fix guest debugging to not actually start the debugger * Add news entry * Fix localize test * Add remote test for debugging * Review feedback
Copy file name to clipboardExpand all lines: package.nls.json
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -302,5 +302,10 @@
302
302
"DataScience.jupyterDataRateExceeded": "Cannot view variable because data rate exceeded. Please restart your server with a higher data rate limit. For example, --NotebookApp.iopub_data_rate_limit=10000000000.0",
"DataScience.variableExplorerDisabledDuringDebugging": "Variables are not available while debugging."
305
+
"DataScience.variableExplorerDisabledDuringDebugging": "Variables are not available while debugging.",
306
+
"DataScience.jupyterDebuggerNotInstalledError" : "Pip module ptvsd is required for debugging cells. You will need to install it to debug cells.",
307
+
"DataScience.jupyterDebuggerPortNotAvailableError" : "Port {0} cannot be opened for debugging. Please specify a different port in the remoteDebuggerPort setting.",
308
+
"DataScience.jupyterDebuggerPortBlockedError" : "Port {0} cannot be connected to for debugging. Please let port {0} through your firewall.",
309
+
"DataScience.jupyterDebuggerPortNotAvailableSearchError" : "Ports in the range {0}-{1} cannot be found for debugging. Please specify a port in the remoteDebuggerPort setting.",
310
+
"DataScience.jupyterDebuggerPortBlockedSearchError" : "A port cannot be connected to for debugging. Please let ports {0}-{1} through your firewall."
exportconstvariableExplorerDisabledDuringDebugging=localize('DataScience.variableExplorerDisabledDuringDebugging','Variables are not available while debugging.');
232
+
exportconstjupyterDebuggerNotInstalledError=localize('DataScience.jupyterDebuggerNotInstalledError','Pip module ptvsd is required for debugging cells. You will need to install it to debug cells.');
233
+
exportconstjupyterDebuggerPortNotAvailableError=localize('DataScience.jupyterDebuggerPortNotAvailableError','Port {0} cannot be opened for debugging. Please specify a different port in the remoteDebuggerPort setting.');
234
+
exportconstjupyterDebuggerPortBlockedError=localize('DataScience.jupyterDebuggerPortBlockedError','Port {0} cannot be connected to for debugging. Please let port {0} through your firewall.');
235
+
exportconstjupyterDebuggerPortNotAvailableSearchError=localize('DataScience.jupyterDebuggerPortNotAvailableSearchError','Ports in the range {0}-{1} cannot be found for debugging. Please specify a port in the remoteDebuggerPort setting.');
236
+
exportconstjupyterDebuggerPortBlockedSearchError=localize('DataScience.jupyterDebuggerPortBlockedSearchError','A port cannot be connected to for debugging. Please let ports {0}-{1} through your firewall.');
0 commit comments