mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 10:19:34 +00:00
14 lines
394 B
Diff
14 lines
394 B
Diff
diff --git a/ca/ca.go b/ca/ca.go
|
|
index a5890452f..3a62648c3 100644
|
|
--- a/ca/ca.go
|
|
+++ b/ca/ca.go
|
|
@@ -192,7 +192,7 @@ func NewCertificateAuthorityImpl(
|
|
|
|
for _, keyAlg := range []x509.PublicKeyAlgorithm{x509.ECDSA, x509.RSA} {
|
|
if !issuableKeys[keyAlg] {
|
|
- return nil, fmt.Errorf("no %s issuers configured", keyAlg)
|
|
+ fmt.Printf("WARNING: no %s issuers configured\n", keyAlg)
|
|
}
|
|
}
|
|
|