Skip to content

Commit

Permalink
WIP: continued debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Mar 30, 2024
1 parent 29ac2de commit 6fe6558
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ def _issue_vault_token(
except requests.exceptions.HTTPError as http_error:
error_message = str(http_error)
print("******************")
print(dir(http_error.response))
print(type(http_error.response.text))
print(http_error.response.text)
print("******************")
print(type(http_error.response.json()))
print(http_error.response.json())
print("******************")
if http_error.response is not None:
Expand Down

0 comments on commit 6fe6558

Please sign in to comment.