From dd0bc03665453434230d499b4b5c316d57e4a06c Mon Sep 17 00:00:00 2001 From: Luuk van Venrooij Date: Tue, 1 Oct 2019 09:17:06 +0200 Subject: [PATCH] Bumped wait time to fix timeout issue. --- core/src/epicli/cli/engine/providers/azure/APIProxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/epicli/cli/engine/providers/azure/APIProxy.py b/core/src/epicli/cli/engine/providers/azure/APIProxy.py index 52f898b370..5da839d0f9 100644 --- a/core/src/epicli/cli/engine/providers/azure/APIProxy.py +++ b/core/src/epicli/cli/engine/providers/azure/APIProxy.py @@ -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):