Fix bug 17934 : Azure register failure must not be blocking (#18695)
* Fix bug 17934 * Update link in Azure provider warning log
This commit is contained in:
parent
4673a9c9c2
commit
8b9ded3556
1 changed files with 5 additions and 1 deletions
|
@ -362,7 +362,11 @@ class AzureRM(object):
|
|||
resource_client = self.rm_client
|
||||
resource_client.providers.register(key)
|
||||
except Exception as exc:
|
||||
self.fail("One-time registration of {0} failed - {1}".format(key, str(exc)))
|
||||
self.log("One-time registration of {0} failed - {1}".format(key, str(exc)))
|
||||
self.log("You might need to register {0} using an admin account".format(key))
|
||||
self.log(("To register a provider using the Python CLI: "
|
||||
"https://docs.microsoft.com/azure/azure-resource-manager/"
|
||||
"resource-manager-common-deployment-errors#noregisteredproviderfound"))
|
||||
|
||||
@property
|
||||
def network_client(self):
|
||||
|
|
Loading…
Reference in a new issue