Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
adisunw committed Mar 4, 2024
1 parent 920b2d1 commit b4e2824
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gestalt/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ def __init__(
self._jwt: Optional[str] = jwt
self.delay = delay
self.tries = tries
print("CALLED VAULT INIT")

def connect(self) -> None:
print(f"CALLED CONNECT")
try:
retry_call(
self.vault_client.is_authenticated,
Expand Down Expand Up @@ -122,6 +124,7 @@ def get(
Returns:
secret (str): secret
"""
print(f"CALLED VAULT GET")
if not self._is_connected:
self.connect()
# if the key has been read before and is not a TTL secret
Expand Down

0 comments on commit b4e2824

Please sign in to comment.