diff --git a/src/sql/workbench/parts/notebook/models/cell.ts b/src/sql/workbench/parts/notebook/models/cell.ts index 6b96fb6d25..1a385d0ac9 100644 --- a/src/sql/workbench/parts/notebook/models/cell.ts +++ b/src/sql/workbench/parts/notebook/models/cell.ts @@ -213,6 +213,7 @@ export class CellModel implements ICellModel { if (this.future && this.future.inProgress) { this.future.inProgress = false; await kernel.interrupt(); + this.sendNotification(notificationService, Severity.Info, localize('runCellCancelled', "Cell execution cancelled")); } else { // TODO update source based on editor component contents if (kernel.requiresConnection && !this.notebookModel.activeConnection) {