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
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/src/connection_manager.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -306,7 +306,7 @@ export class DocumentConnectionManager {
306
306
);
307
307
}catch{
308
308
this.console.warn(
309
-
`LSP: Connection to ${virtual_document.uri} timed out after ${firstTimeoutSeconds} seconds, will continue retrying for another ${secondTimeoutMinutes} minutes`
309
+
`Connection to ${virtual_document.uri} timed out after ${firstTimeoutSeconds} seconds, will continue retrying for another ${secondTimeoutMinutes} minutes`
310
310
);
311
311
try{
312
312
awaituntil_ready(
@@ -316,7 +316,7 @@ export class DocumentConnectionManager {
316
316
);
317
317
}catch{
318
318
this.console.warn(
319
-
`LSP: Connection to ${virtual_document.uri} timed out again after ${secondTimeoutMinutes} minutes, giving up`
319
+
`Connection to ${virtual_document.uri} timed out again after ${secondTimeoutMinutes} minutes, giving up`
0 commit comments