expose renewableAt
? #1
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, the
check
andregister
results expose when the certificate is registered and when it expires. However, it does not expose when it is renewable, even though this information is available. From the debug logs:Should we expose this date? Or can I assume that it is always exactly 7 days before
expiresAt
?Yes, this should be exposed. I would happily accept a PR.
This is available as
renewWithin
, now documented in the README.The default has also been changed to 14 days. Published in v2.2.3.
Thanks for the feedback!
The minimum (
renewBy
) defaults to 10 days. The maximum (renewWithin
) defaults to 14 days.A random time is generated within this window so that the renewal dates will skew a little bit between domains and you won't be bogging down your server on exactly a particular day and time to suddenly renew 100 certificates all at once.
:)