-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
🌱 (chore): use errors.As
and wrap exec errors in repository.go
#4730
base: master
Are you sure you want to change the base?
🌱 (chore): use errors.As
and wrap exec errors in repository.go
#4730
Conversation
Hi @kersten. 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 Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions 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. |
@@ -39,7 +40,8 @@ func findGoModulePath() (string, error) { | |||
cmd.Env = append(cmd.Env, os.Environ()...) | |||
out, err := cmd.Output() | |||
if err != nil { | |||
if exitErr, isExitErr := err.(*exec.ExitError); isExitErr { | |||
var exitErr *exec.ExitError | |||
if errors.As(err, &exitErr) { |
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.
should we not use errors.Is()
here?
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.
Will check that out
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.
errors.Is
just checks the error and does not populate it to exitErr
.
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.
improves error type handling and seems safe to merge.
/lgtm
/ok-to-test
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: camilamacedo86, kersten The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
errors.As
and wrap exec errors in repository.goerrors.As
and wrap exec errors in repository.go
errors.As
and wrap exec errors in repository.goerrors.As
and wrap exec errors in repository.go
Refactored error handling in `repository.go`: - Replaced type assertion with `errors.As` for `*exec.ExitError` - Ensured command stderr is preserved in the wrapped `fmt.Errorf` output - Set up for better error introspection and debugging
0ad43be
to
646d2b5
Compare
/lgtm |
errors.As
and wrap exec errors in repository.goerrors.As
and wrap exec errors in repository.go
Refactored error handling in
repository.go
:errors.As
for*exec.ExitError
fmt.Errorf
output