safer reissue, fix celery sync job
This commit is contained in:
parent
f824f76d9c
commit
50761d9d3b
|
@ -238,7 +238,17 @@ def reissue(old_certificate_name, commit):
|
||||||
|
|
||||||
if not old_cert:
|
if not old_cert:
|
||||||
for certificate in get_all_pending_reissue():
|
for certificate in get_all_pending_reissue():
|
||||||
|
try:
|
||||||
request_reissue(certificate, commit)
|
request_reissue(certificate, commit)
|
||||||
|
except Exception as e:
|
||||||
|
sentry.captureException()
|
||||||
|
current_app.logger.exception(
|
||||||
|
"Error reissuing certificate: {}".format(certificate.name), exc_info=True)
|
||||||
|
print(
|
||||||
|
"[!] Failed to reissue certificates. Reason: {}".format(
|
||||||
|
e
|
||||||
|
)
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
request_reissue(old_cert, commit)
|
request_reissue(old_cert, commit)
|
||||||
|
|
||||||
|
|
|
@ -210,4 +210,4 @@ def sync_source(source):
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
current_app.logger.debug("Syncing source {}".format(source))
|
current_app.logger.debug("Syncing source {}".format(source))
|
||||||
sync([source], True)
|
sync([source])
|
||||||
|
|
Loading…
Reference in New Issue