forked from TrueCloudLab/lego
fix: missing preferred chain param for renew request (#1502)
This commit is contained in:
parent
9022382953
commit
e9b0b5247b
1 changed files with 5 additions and 4 deletions
|
@ -435,10 +435,11 @@ func (c *Certifier) Renew(certRes Resource, bundle, mustStaple bool, preferredCh
|
||||||
}
|
}
|
||||||
|
|
||||||
query := ObtainRequest{
|
query := ObtainRequest{
|
||||||
Domains: certcrypto.ExtractDomains(x509Cert),
|
Domains: certcrypto.ExtractDomains(x509Cert),
|
||||||
Bundle: bundle,
|
Bundle: bundle,
|
||||||
PrivateKey: privateKey,
|
PrivateKey: privateKey,
|
||||||
MustStaple: mustStaple,
|
MustStaple: mustStaple,
|
||||||
|
PreferredChain: preferredChain,
|
||||||
}
|
}
|
||||||
return c.Obtain(query)
|
return c.Obtain(query)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue