mirror of https://github.com/caddyserver/caddy.git
Fix lint error about deprecated method in smallstep/certificates/authority
This commit is contained in:
parent
d79c0f0dec
commit
73e094e1dd
|
@ -129,7 +129,7 @@ func (iss InternalIssuer) Issue(ctx context.Context, csr *x509.CertificateReques
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
certChain, err := auth.Sign(csr, provisioner.SignOptions{}, customCertLifetime(caddy.Duration(lifetime)))
|
certChain, err := auth.SignWithContext(ctx, csr, provisioner.SignOptions{}, customCertLifetime(caddy.Duration(lifetime)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue