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 3f2097607 [DATALAB-2814]: tmp removed public access restriction
3f2097607 is described below

commit 3f20976073eacb69a3724a9ddde32d3ca8724df5
Author: leonidfrolov <[email protected]>
AuthorDate: Thu May 26 16:37:49 2022 +0300

    [DATALAB-2814]: tmp removed public access restriction
---
 infrastructure-provisioning/src/general/lib/azure/actions_lib.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py 
b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
index 357461533..92991c81c 100644
--- a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py
@@ -516,10 +516,9 @@ 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"})
+            result = block_blob_service.create_container(container_name)
             print('=======3')
             return result
         except Exception as err:


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to