Skip to content

Commit

Permalink
WIP: Try spacey error title
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Mar 30, 2024
1 parent f28b83a commit 8618992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _issue_vault_token(
response = requests.post(login_url, data=payload, timeout=10)
response.raise_for_status()
except requests.exceptions.HTTPError as http_error:
print(f"::error title=LoginError::{str(http_error)}")
print(f"::error title=Vault login error::{str(http_error)}")
raise VoscaError from http_error

vault_token: str = response.json()["auth"]["client_token"]
Expand Down

0 comments on commit 8618992

Please sign in to comment.