🐛Fix process Stop timeout error handling#3523
Conversation
|
Hi @mattsu2020. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
Hi @joelanford @troy0820 @vincepri, This PR is ready for review. The PR title verifier is now passing, but golangci-lint is still waiting for maintainer approval because the PR has the needs-ok-to-test label. Could one of you please take a look and run /ok-to-test if the patch looks reasonable? Thanks! |
|
/ok-to-test |
|
Needs rebase after #3519 is merged |
I have addressed it. |
| } | ||
|
|
||
| originalSignalProcess := signalProcess | ||
| defer func() { |
There was a problem hiding this comment.
Defers are not reliable in tests because the goroutine gets terminated on Fatal(), please use t.Cleanup instead
Replace deferred restoration of signalProcess with t.Cleanup to ensure cleanup runs even if the test panics or fails.
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alvaroaleman, mattsu2020 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
LGTM label has been added. DetailsGit tree hash: d09e679c7d5d220f7a49c503feb0a043daaf8d22 |
|
thanks |
What changed
errors.Join.Why
On Darwin,
SIGKILLcan fail withEPERMif the process is already terminating after the timeout. That failure previously replaced the primary timeout error, making callers and tests seeunable to kill process ...instead oftimeout waiting for process ... to stop.Fixes #3522.
Validation