ForbiddenStatusError: make linter happy on error construction

Signed-off-by: Monis Khan <mok@microsoft.com>

Kubernetes-commit: bff6ce4a38077c29cdf2e1ac2fce1a551082ebfe
This commit is contained in:
Monis Khan 2024-08-05 10:50:51 -04:00 committed by Kubernetes Publisher
parent 757565c389
commit cc8ff8f965
1 changed files with 4 additions and 4 deletions

View File

@ -42,16 +42,16 @@ func Forbidden(ctx context.Context, attributes authorizer.Attributes, w http.Res
func ForbiddenStatusError(attributes authorizer.Attributes, reason string) *apierrors.StatusError {
msg := sanitizer.Replace(forbiddenMessage(attributes))
var errMsg string
var errMsg error
if len(reason) == 0 {
errMsg = fmt.Sprintf("%s", msg)
errMsg = fmt.Errorf("%s", msg)
} else {
errMsg = fmt.Sprintf("%s: %s", msg, reason)
errMsg = fmt.Errorf("%s: %s", msg, reason)
}
gr := schema.GroupResource{Group: attributes.GetAPIGroup(), Resource: attributes.GetResource()}
return apierrors.NewForbidden(gr, attributes.GetName(), fmt.Errorf(errMsg))
return apierrors.NewForbidden(gr, attributes.GetName(), errMsg)
}
func forbiddenMessage(attributes authorizer.Attributes) string {