forked from TrueCloudLab/certificates
Remove debug statements.
This commit is contained in:
parent
3f07eb597a
commit
d72fa953ac
1 changed files with 0 additions and 2 deletions
|
@ -444,10 +444,8 @@ func (a *Authority) revoke(crt *x509.Certificate, rci *db.RevokedCertificateInfo
|
||||||
if lca, ok := a.adminDB.(interface {
|
if lca, ok := a.adminDB.(interface {
|
||||||
Revoke(*x509.Certificate, *db.RevokedCertificateInfo) error
|
Revoke(*x509.Certificate, *db.RevokedCertificateInfo) error
|
||||||
}); ok {
|
}); ok {
|
||||||
println(true)
|
|
||||||
return lca.Revoke(crt, rci)
|
return lca.Revoke(crt, rci)
|
||||||
}
|
}
|
||||||
println(false)
|
|
||||||
return a.db.Revoke(rci)
|
return a.db.Revoke(rci)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue