Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed May 27, 2022
1 parent b50a8b1 commit c2963ce
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/notebooks/execution/cellExecutionMessageHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export class CellExecutionMessageHandler implements IDisposable {
// Cell has been deleted or the like.
if (this.cell.document.isClosed) {
request.dispose();
return;
}
try {
this.handleIOPub(msg);
Expand All @@ -157,6 +158,7 @@ export class CellExecutionMessageHandler implements IDisposable {
// Cell has been deleted or the like.
if (this.cell.document.isClosed) {
request.dispose();
return;
}
this.handleReply(msg);
};
Expand Down

0 comments on commit c2963ce

Please sign in to comment.