fix to return combined multiple errors#1598
Open
eyasy1217 wants to merge 2 commits intooapi-codegen:mainfrom
Open
fix to return combined multiple errors#1598eyasy1217 wants to merge 2 commits intooapi-codegen:mainfrom
eyasy1217 wants to merge 2 commits intooapi-codegen:mainfrom
Conversation
jamietanna
requested changes
May 6, 2024
Member
jamietanna
left a comment
There was a problem hiding this comment.
Thanks for this!
I was wondering if maybe instead of this, we have i.e.
var errs []error
for fieldName, field := range a.AdditionalProperties {
object[fieldName], err := json.Marshal(field)
if err != nil {
errs = append(errs, fmt.Errorf("'%s': %w", fieldName, err))
}
}
err := errors.Join(errs...)
if err != nil {
return nil, fmt.Errorf("error marshaling %w", joinedError)
}Which then uses errors.Join in a slightly easier way?
Author
It looks to me like this is doing something similar to the internal code of errors.Join |
Member
|
Yep, but with an array rather than joining in the loop will probably be a little more efficient, and only does the joining once |
Author
|
That's right. |
Contributor
|
I think the same behavior can be achieved as follows: var errs error
for fieldName, field := range a.AdditionalProperties {
object[fieldName], err = json.Marshal(field)
if err != nil {
errs = errors.Join(errs, fmt.Errorf("json marshal %q: %w", fieldName, err))
}
}
if errs != nil {
return nil, errs
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #1515
MarshalJSON returns combined json marshal errors in AdditionalProperties.
e.g.
Before
error marshaling 'unsupportedType1': json: unsupported type: chan int↓
After
error marshaling 'unsupportedType1': json: unsupported type: chan int 'unsupportedType2': json: unsupported type: func()(requierd go 1.20)