@@ -225,7 +225,7 @@ export class CellExecutionMessageHandler implements IDisposable {
225225 this . execution = cellExecution ;
226226 // We're in all messages.
227227 // When using the `interact` function in Python, we can get outputs from comm messages even before execution has completed.
228- // See https://github.com/deepnote /vscode-deepnote /issues/9503 for more information on why we need to monitor anyMessage and iopubMessage signals.
228+ // See https://github.com/microsoft /vscode-jupyter /issues/9503 for more information on why we need to monitor anyMessage and iopubMessage signals.
229229 this . kernel . anyMessage . connect ( this . onKernelAnyMessage , this ) ;
230230 this . kernel . iopubMessage . connect ( this . onKernelIOPubMessage , this ) ;
231231
@@ -395,13 +395,13 @@ export class CellExecutionMessageHandler implements IDisposable {
395395 }
396396 }
397397 // We're only interested in messages after execution has completed.
398- // See https://github.com/deepnote /vscode-deepnote /issues/9503 for more information.
398+ // See https://github.com/microsoft /vscode-jupyter /issues/9503 for more information.
399399 if ( direction !== 'send' || ! this . completedExecution ) {
400400 return ;
401401 }
402402 if ( jupyterLab . KernelMessage . isCommMsgMsg ( msg ) && this . ownedCommIds . has ( msg . content . comm_id ) ) {
403403 // Looks like we have a comm msg request sent by some output or the like.
404- // See https://github.com/deepnote /vscode-deepnote /issues/9503 for more information.
404+ // See https://github.com/microsoft /vscode-jupyter /issues/9503 for more information.
405405 this . ownedRequestMsgIds . add ( msg . header . msg_id ) ;
406406 }
407407 }
@@ -411,11 +411,11 @@ export class CellExecutionMessageHandler implements IDisposable {
411411 }
412412
413413 // We're only interested in messages after execution has completed.
414- // See https://github.com/deepnote /vscode-deepnote /issues/9503 for more information.
414+ // See https://github.com/microsoft /vscode-jupyter /issues/9503 for more information.
415415
416416 // Handle iopub messages that are sent from Jupyter in response to some
417417 // comm message (requests) sent by an output widget.
418- // See https://github.com/deepnote /vscode-deepnote /issues/9503 for more information.
418+ // See https://github.com/microsoft /vscode-jupyter /issues/9503 for more information.
419419 if (
420420 ! msg . parent_header ||
421421 ! ( 'msg_id' in msg . parent_header ) ||
@@ -497,7 +497,7 @@ export class CellExecutionMessageHandler implements IDisposable {
497497 // try {
498498 // // The time from the kernel is more accurate, as that will ignore the network latency.
499499 // // Note: There could be an offset between the time on the kernel and the time on the client.
500- // // https://github.com/deepnote /vscode-deepnote /issues/14072
500+ // // https://github.com/microsoft /vscode-jupyter /issues/14072
501501 // // this.startTime = new Date(msg.header.date).getTime();
502502 // } catch {
503503 // //
@@ -980,7 +980,7 @@ export class CellExecutionMessageHandler implements IDisposable {
980980 }
981981
982982 if ( msg . parent_header . msg_type === 'comm_msg' && msg . header . msg_type === 'stream' ) {
983- // Fix for https://github.com/deepnote /vscode-deepnote /issues/15996
983+ // Fix for https://github.com/microsoft /vscode-jupyter /issues/15996
984984 // We're not interested in stream messages that are part of comm messages.
985985 return ;
986986 }
0 commit comments