switch log position of storage account

There may be issue on query storage account, so move the deploying line
later to confirm storage operation is succeed.
This commit is contained in:
Chi Song 2020-12-09 14:52:20 +08:00
Родитель 2f85754e16
Коммит c24cd067ee
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -859,10 +859,9 @@ class AzurePlatform(Platform):
self, location: str, deployment_parameters: Dict[str, Any], log: Logger
) -> None:
resource_group_name = deployment_parameters[AZURE_RG_NAME_KEY]
log.info(f"resource group '{resource_group_name}' deployment is in progress...")
self._check_or_create_storage_account(location=location, log=log)
log.info(f"resource group '{resource_group_name}' deployment is in progress...")
deployment_operation: Any = None
deployments = self._rm_client.deployments
try: