You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tasks): gracefully handle callbacks after cancel
If a callback returns after a task is already cancelled, we should
gracefully handle it by not attempting to set the result of the task
since it is already set.
See #15
fix(tasks): cancel immediately
Previously the loop would wait for the next yield but instead we can
just step forward immediately when cancelling.
See #15