-
Notifications
You must be signed in to change notification settings - Fork 300
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
Cancellation on Windows: Pass /T
to taskkill
#795
Conversation
`/T` will make `taskkill` kill all the child processes as well. This should improve the cancellation behavior. (#794)
This seems sensible. I'll do some testing on Windows. |
Some interesting context and alternative approaches in golang/dep#862. |
thanks for the merge @lox |
Very useful reference. Any objections to incorporating |
@amitsaha I didn't see any huge upside in |
Ah right, in that case I'd absolutely support |
I will have to look into this more, but it seems |
indeed, that's the case, so, we don't need |
/T
will maketaskkill
kill all the child processes as well. This should improve the cancellation behavior. (#794)Please let me know if I should file a separate issue.