Uh oh!
There was an error while loading. Please reload this page.
Fix CancelAsync Cause Deadlock - #1345
Conversation
Rob-Hague
left a comment
There was a problem hiding this comment.
Would it be possible to add a test for forceKill = true as well?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
| /// </summary> | ||
| public void CancelAsync() | ||
| /// <param name="forceKill">if true send SIGKILL instead of SIGTERM.</param> | ||
| public void CancelAsync(bool forceKill = false) |
There was a problem hiding this comment.
Perhaps we drop the Async suffix here (and obsolete CancelAsync) as it is not an async method. @WojciechNagorski?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
WojciechNagorski
left a comment
There was a problem hiding this comment.
Unfortunately, I don't have much time for this project at the moment. Only PRs that have @Rob-Hague's approval are verified and merged by me.
Fix CancelAsync causing deadlocking:
it now signal WaitHandle of Cancelled event after sending SIGTERM/SIGKILL signal to try to abort the request.
close#1147 and close#1023