This is an automated email from the ASF dual-hosted git repository.
lfrolov pushed a commit to branch DATALAB-2814
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
The following commit(s) were added to refs/heads/DATALAB-2814 by this push:
new 4e76ee1d5 [DATALAB-2814]: added some output
4e76ee1d5 is described below
commit 4e76ee1d517a3efac9dbf145f7d29fc320fa87b8
Author: leonidfrolov <[email protected]>
AuthorDate: Thu May 26 15:28:07 2022 +0300
[DATALAB-2814]: added some output
---
infrastructure-provisioning/src/general/lib/azure/actions_lib.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
index 59acc388f..d841370df 100644
--- a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
@@ -516,13 +516,16 @@ class AzureActions:
def create_blob_container(self, resource_group_name, account_name,
container_name):
try:
+ print('=======1')
block_blob_service = BlobServiceClient(account_url="https://" +
account_name + ".blob.core.windows.net/", credential=self.credential)
+ print('=======2')
result = block_blob_service.create_container(
container_name,
{
"public_access": "Off"
}
)
+ print('=======3')
return result
except Exception as err:
logging.info(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]