-
Notifications
You must be signed in to change notification settings - Fork 278
fix: handle nil ParseableType from GVKParser #574
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
Conversation
Signed-off-by: Leonardo Luz Almeida <[email protected]>
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.
If you're cool with it, let's update the text so it's a bit more clear for users.
pkg/diff/diff.go
Outdated
@@ -208,6 +208,10 @@ func removeWebhookMutation(predictedLive, live *unstructured.Unstructured, gvkPa | |||
} | |||
gvk := predictedLive.GetObjectKind().GroupVersionKind() | |||
pt := gvkParser.Type(gvk) | |||
if pt == nil { | |||
return nil, fmt.Errorf("unable to resolve parseableType for gvk: %s", gvk) |
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.
return nil, fmt.Errorf("unable to resolve parseableType for gvk: %s", gvk) | |
return nil, fmt.Errorf("unable to resolve parseableType for gvk (Group Version Kind): %s", gvk) |
I think we can make this a bit more clear.
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.
@todaywasawesome This is an internal error message but I agree with making it a bit more clear. I added a small modification.
PTAL
pkg/diff/diff.go
Outdated
@@ -316,6 +320,9 @@ func structuredMergeDiff(p *SMDParams) (*DiffResult, error) { | |||
|
|||
gvk := p.config.GetObjectKind().GroupVersionKind() | |||
pt := gescheme.ResolveParseableType(gvk, p.gvkParser) | |||
if pt == nil { | |||
return nil, fmt.Errorf("unable to resolve parseableType for gvk: %s", gvk) |
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.
return nil, fmt.Errorf("unable to resolve parseableType for gvk: %s", gvk) | |
return nil, fmt.Errorf("unable to resolve parseableType for gvk (Group Version Kind): %s", gvk) |
Same
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.
@todaywasawesome This is an internal error message but I agree with making it a bit more clear. I added a small modification.
PTAL
Signed-off-by: Leonardo Luz Almeida <[email protected]>
|
* fix: handle nil ParseableType from GVKParser Signed-off-by: Leonardo Luz Almeida <[email protected]> * address review comments Signed-off-by: Leonardo Luz Almeida <[email protected]> --------- Signed-off-by: Leonardo Luz Almeida <[email protected]>
fix argoproj/argo-cd#18020