Commit 7b948ac6 authored by Vincent Pelletier's avatar Vincent Pelletier

cli.updater: Prevent immediate wake-ups.

Always wait at least 60 seconds between consecutive wake-ups. Avoids
spamming server and local logs with attempts in case of temporary issues
(ex: network).
parent d387cfa0
Pipeline #9804 failed with stage
in 0 seconds
......@@ -792,6 +792,7 @@ def updater(argv=None, until=utils.until):
threshold = datetime.timedelta(args.threshold, 0)
crl_threshold = datetime.timedelta(args.crl_threshold, 0)
max_sleep = datetime.timedelta(args.max_sleep, 0)
min_sleep = datetime.timedelta(0, 60)
updated = RetryingCaucaseClient.updateCAFile(
cas_url,
args.cas_ca,
......@@ -892,6 +893,10 @@ def updater(argv=None, until=utils.until):
next_deadline,
crt.not_valid_after - threshold,
)
next_deadline = max(
next_deadline,
now + min_sleep,
)
if updated:
if args.on_renew is not None:
status = os.system(args.on_renew)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment