fixing the message bug

This commit is contained in:
Hossein Shafagh 2021-01-28 15:48:39 -08:00
parent 089796a849
commit e250a61344
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,6 @@ def rotate(endpoint_name, new_certificate_name, old_certificate_name, message, c
else: else:
print("[+] Rotating all endpoints that have new certificates available") print("[+] Rotating all endpoints that have new certificates available")
log_data["message"] = "Rotating all endpoints that have new certificates available"
for endpoint in endpoint_service.get_all_pending_rotation(): for endpoint in endpoint_service.get_all_pending_rotation():
log_data["endpoint"] = endpoint.dnsname log_data["endpoint"] = endpoint.dnsname
if len(endpoint.certificate.replaced) == 1: if len(endpoint.certificate.replaced) == 1:
@ -284,6 +283,7 @@ def rotate(endpoint_name, new_certificate_name, old_certificate_name, message, c
f"[!] Failed to rotate endpoint {endpoint.name} reason: " f"[!] Failed to rotate endpoint {endpoint.name} reason: "
"Multiple replacement certificates found." "Multiple replacement certificates found."
) )
log_data["message"] = "Rotating endpoint from old to new cert"
status = SUCCESS_METRIC_STATUS status = SUCCESS_METRIC_STATUS
print("[+] Done!") print("[+] Done!")