Skip to content
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

fix: improve accumulation failure message #5542

Merged
merged 4 commits into from
Mar 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: correct lint issues
  • Loading branch information
ephesused committed Mar 11, 2024
commit 14a9a9849f2998f2b6007b854eae26d94dfb740b
4 changes: 2 additions & 2 deletions api/internal/target/kusttarget_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ func (l loaderNewThrowsError) New(_ string) (ifc.Loader, error) {
}

func (l loaderNewThrowsError) Load(location string) ([]byte, error) {
return l.baseLoader.Load(location)
return l.baseLoader.Load(location) //nolint:wrapcheck // baseLoader's error is sufficient
}

func (l loaderNewThrowsError) Cleanup() error {
return l.baseLoader.Cleanup()
return l.baseLoader.Cleanup() //nolint:wrapcheck // baseLoader's error is sufficient
}
Loading