Starting transition away from not_before and not_after. (#854)
This commit is contained in:
parent
61c493fc91
commit
f5082e2d3a
|
@ -123,7 +123,6 @@ def request_reissue(certificate, commit):
|
|||
:return:
|
||||
"""
|
||||
details = get_certificate_primitives(certificate)
|
||||
|
||||
print_certificate_details(details)
|
||||
|
||||
if commit:
|
||||
|
@ -207,8 +206,7 @@ def reissue(old_certificate_name, commit):
|
|||
sentry.captureException()
|
||||
metrics.send('certificate_reissue_failure', 'counter', 1)
|
||||
print(
|
||||
"[!] Failed to reissue certificate {0} reason: {1}".format(
|
||||
old_cert.name,
|
||||
"[!] Failed to reissue certificates. Reason: {}".format(
|
||||
e
|
||||
)
|
||||
)
|
||||
|
|
|
@ -471,8 +471,12 @@ def get_certificate_primitives(certificate):
|
|||
|
||||
# TODO this can be removed once we migrate away from cn
|
||||
data['cn'] = data['common_name']
|
||||
|
||||
# needed until we move off not_*
|
||||
data['not_before'] = start
|
||||
data['not_after'] = end
|
||||
data['validity_start'] = start
|
||||
data['validity_end'] = end
|
||||
return data
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue