Skip to content

Commit

Permalink
Update KeyVaultPreparer with track 2 mgmt changes (#12060)
Browse files Browse the repository at this point in the history
  • Loading branch information
chlowell authored Jun 15, 2020
1 parent 287ac6b commit 4930d99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def create_resource(self, name, **kwargs):
retries = 4
for i in range(retries):
try:
vault = self.client.vaults.create_or_update(group, name, parameters).result()
vault = self.client.vaults.begin_create_or_update(group, name, parameters).result()
break
except Exception as ex:
if "VaultAlreadyExists" in str(ex):
Expand Down

0 comments on commit 4930d99

Please sign in to comment.