better handling of status code
This commit is contained in:
parent
92eec5cc9c
commit
906b3b2337
|
@ -109,6 +109,11 @@ def handle_response(my_response):
|
|||
"response": d
|
||||
}
|
||||
current_app.logger.info(log_data)
|
||||
if d == {'response': 'No detailed message'}:
|
||||
# status if no data
|
||||
return s
|
||||
else:
|
||||
# return data from the response
|
||||
return d
|
||||
|
||||
|
||||
|
@ -211,7 +216,7 @@ class EntrustIssuerPlugin(IssuerPlugin):
|
|||
deactivate_url = f"{base_url}/certificates/{certificate.external_id}/deactivations"
|
||||
response = self.session.post(deactivate_url)
|
||||
metrics.send("entrust_deactivate_certificate", "counter", 1)
|
||||
return handle_response(response)
|
||||
return response.status_code
|
||||
|
||||
@staticmethod
|
||||
def create_authority(options):
|
||||
|
|
Loading…
Reference in New Issue