Skip to content

Commit

Permalink
remove task from in progress when it terminates (#168623)
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge authored Dec 12, 2022
1 parent 6630cd7 commit 371d042
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1913,6 +1913,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
if (!this._taskSystem) {
return { success: true, task: undefined };
}
this._inProgressTasks.delete(task._label);
return this._taskSystem.terminate(task);
}

Expand Down

0 comments on commit 371d042

Please sign in to comment.