Skip to content

Commit

Permalink
Bumped wait time to fix timeout issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
seriva committed Oct 1, 2019
1 parent 0108c73 commit dd0bc03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/epicli/cli/engine/providers/azure/APIProxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create_sp(self, app_name, subscription_id):
#TODO: make role configurable?
sp = self.run(self, f'az ad sp create-for-rbac -n "{app_name}" --role="Contributor" --scopes="/subscriptions/{subscription_id}"')
# Sleep for a while. Sometimes the call returns before the rights of the SP are finished creating.
self.wait(self, 20)
self.wait(self, 60)
return sp

def get_ips_for_feature(self, component_key):
Expand Down

0 comments on commit dd0bc03

Please sign in to comment.