-
Notifications
You must be signed in to change notification settings - Fork 26.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(zone.js): cancel tasks only when they are scheduled or running #46435
Conversation
a9a1fbf
to
545a2a9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late response, LGTM!
packages/zone.js/lib/zone.ts
Outdated
@@ -956,6 +956,13 @@ const Zone: ZoneType = (function(global: any) { | |||
throw new Error( | |||
'A task can only be cancelled in the zone of creation! (Creation: ' + | |||
(task.zone || NO_ZONE).name + '; Execution: ' + this.name + ')'); | |||
|
|||
// https://github.com/angular/angular/issues/45711 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this comment would be better next to a test case, IMO
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
Currently, there's no check if the task (that is being canceled) has the right state. Only `scheduled` and `running` tasks can be canceled. If the task has a non-appropriate state, then an error will be thrown. Cancelation should not throw an error on an already canceled task, e.g. `clearTimeout` does not throw errors when it's called multiple times on the same timer. PR Close angular#45711
545a2a9
to
25f22c2
Compare
TGP is green |
This PR was merged into the repository by commit b618b5a. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Currently, there's no check if the task (that is being canceled) has the right state.
Only
scheduled
andrunning
tasks can be canceled. If the task has a non-appropriatestate, then an error will be thrown. Cancelation should not throw an error on an already
canceled task, e.g.
clearTimeout
does not throw errors when it's called multiple timeson the same timer.
Issue Number: #45711
Does this PR introduce a breaking change?