This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DATALAB-2321
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git


The following commit(s) were added to refs/heads/DATALAB-2321 by this push:
     new 22c90fe  [DATALAB-2321]: added output
22c90fe is described below

commit 22c90fe9f5c23eeee8b48bfa17077de6fb1d5eac
Author: leonidfrolov <[email protected]>
AuthorDate: Mon May 17 15:44:21 2021 +0300

    [DATALAB-2321]: added output
---
 .../src/general/scripts/azure/ssn_terminate.py                 | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/infrastructure-provisioning/src/general/scripts/azure/ssn_terminate.py 
b/infrastructure-provisioning/src/general/scripts/azure/ssn_terminate.py
index ecf355c..15e7f27 100644
--- a/infrastructure-provisioning/src/general/scripts/azure/ssn_terminate.py
+++ b/infrastructure-provisioning/src/general/scripts/azure/ssn_terminate.py
@@ -119,10 +119,12 @@ def terminate_ssn_node(resource_group_name, 
service_base_name, vpc_name, region)
         try:
             print('========')
             print(AzureMeta.list_subnets(resource_group_name, 
os.environ['azure_vpc_name']))
-            print('========')
-            for i in AzureMeta.list_subnets(resource_group_name, 
os.environ['azure_vpc_name']):
-                if service_base_name in i['name']:
-                    AzureActions.remove_subnet(resource_group_name, 
os.environ['azure_vpc_name'], i['name'])
+            print('========2')
+            for subnet in AzureMeta.list_subnets(resource_group_name, 
os.environ['azure_vpc_name']):
+                print('========3')
+                print(subnet)
+                if service_base_name in subnet['name']:
+                    AzureActions.remove_subnet(resource_group_name, 
os.environ['azure_vpc_name'], subnet['name'])
                     print("Subnet {} has been removed from VPC 
{}".format(i['name'], os.environ['azure_vpc_name']))
         except Exception as err:
             datalab.fab.append_result("Failed to remove subnets in predefined 
VPC", str(err))

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

Reply via email to