Skip to content

Commit

Permalink
making linter happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
gvicentin committed Aug 14, 2024
1 parent 7ac3501 commit 1dc1758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubernetes/ingress.go
Original file line number Diff line number Diff line change
Expand Up @@ -738,10 +738,10 @@ func (k *IngressService) RemoveCertificate(ctx context.Context, id router.Instan
if err != nil {
return err
}
err = secret.Delete(ctx, k.secretName(id, certCname), metav1.DeleteOptions{})
return secret.Delete(ctx, k.secretName(id, certCname), metav1.DeleteOptions{})
}

return err
return nil
}

// SupportedOptions returns the supported options
Expand Down

0 comments on commit 1dc1758

Please sign in to comment.