We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000b19c commit fd107dcCopy full SHA for fd107dc
internal/actions/csr/svc.go
@@ -241,7 +241,7 @@ func shouldSkip(csr *wrapper.CSR) (bool, string) {
241
return true, fmt.Sprintf("csr requesting user is not managed by CAST AI: %s", csr.RequestingUser())
242
}
243
if !managerSubjectCommonName(csr.ParsedCertificateRequest().Subject.CommonName) {
244
- return true, fmt.Sprintf("csr common name is not managed by CAST AIL %s", csr.ParsedCertificateRequest().Subject.CommonName)
+ return true, fmt.Sprintf("csr common name is not managed by CAST AI %s", csr.ParsedCertificateRequest().Subject.CommonName)
245
246
return false, ""
247
0 commit comments