Skip to content

Commit

Permalink
Merge pull request #11181 from shivamdurgbuns/fix/issue11180
Browse files Browse the repository at this point in the history
Adding setter function for vault_path_token
  • Loading branch information
petr-balogh authored Jan 21, 2025
2 parents 73b2443 + d06f758 commit 1f886a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ocs_ci/utility/kms.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ def vault_path_token(self):
Vault._vault_path_token = self.generate_vault_token()
return Vault._vault_path_token

@vault_path_token.setter
def vault_path_token(self, value):
# For setting values in test cases
Vault._vault_path_token = value

def deploy(self):
"""
This function delegates the deployment of vault
Expand Down

0 comments on commit 1f886a1

Please sign in to comment.