hook up execution task cancellation from controllers

This commit is contained in:
Johannes Rieken
2021-04-16 10:51:45 +02:00
parent 644e1d0bc4
commit 8877d8ca94
2 changed files with 11 additions and 1 deletions

View File

@@ -624,7 +624,7 @@ export class ExtHostNotebookController implements ExtHostNotebookShape {
}
}
private cancelOneNotebookCellExecution(cell: ExtHostCell): void {
cancelOneNotebookCellExecution(cell: ExtHostCell): void {
const execution = this._activeExecutions.get(cell.uri);
execution?.cancel();
}