There was an error while loading. Please reload this page.
1 parent cdbfb77 commit 92d24edCopy full SHA for 92d24ed
news/3 Code Health/6625.md
@@ -0,0 +1 @@
1
+Fix jupyter remote tests to respect new notebook 6.0 output format
src/test/datascience/jupyterHelpers.ts
@@ -33,7 +33,8 @@ export function getIPConnectionInfo(output: string): string | undefined {
33
return `${urlMatch[1]}://${urlMatch[2]}:${urlMatch[3]}/?token=${urlMatch[4]}`;
34
}
35
36
- return undefined;
+ // In Notebook 6.0 instead of the above format it returns a single valid web address so just return that
37
+ return getConnectionInfo(output);
38
39
40
export function getConnectionInfo(output: string): string | undefined {
0 commit comments