Truncate time to the second

pull/731/head
Mariano Cano 2 years ago
parent 6d4fd7d016
commit 51c7f56030
No known key found for this signature in database

@ -30,8 +30,8 @@ import (
casapi "github.com/smallstep/certificates/cas/apiv1"
"github.com/smallstep/certificates/db"
"github.com/smallstep/certificates/errs"
"github.com/smallstep/nosql/database"
"github.com/smallstep/certificates/webhook"
"github.com/smallstep/nosql/database"
)
// GetTLSOptions returns the tls options configured.
@ -689,7 +689,7 @@ func (a *Authority) GenerateCertificateRevocationList() error {
return errors.Wrap(err, "could not retrieve CRL from database")
}
now := time.Now().UTC()
now := time.Now().Truncate(time.Second).UTC()
revokedList, err := crlDB.GetRevokedCertificates()
if err != nil {
return errors.Wrap(err, "could not retrieve revoked certificates list from database")

Loading…
Cancel
Save