Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! fix apis
  • Loading branch information
aleoli committed Oct 10, 2023
1 parent 96a665f commit 83385c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/liqo-controller-manager/external-network/utils/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ func IgnoreAPINotFoundError(err error) error {
if errors.As(err, &dErr) {
return nil
}
var kErr *meta.NoKindMatchError
if errors.As(err, &kErr) {
var noKindErr *meta.NoKindMatchError
if errors.As(err, &noKindErr) {
return nil
}
return err
Expand Down

0 comments on commit 83385c8

Please sign in to comment.