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

ioleksandr pushed a commit to branch DLAB-599
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/DLAB-599 by this push:
     new 7f9695e  [DLAB-599] Add possibility to choose zone during DLab 
deployment
7f9695e is described below

commit 7f9695e526bfba9a70f76be9dada7e0fa9342463
Author: Oleksandr_Isniuk <i.oleksa...@gmail.com>
AuthorDate: Mon Apr 15 14:40:55 2019 +0300

    [DLAB-599] Add possibility to choose zone during DLab deployment
---
 infrastructure-provisioning/src/general/lib/aws/actions_lib.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/infrastructure-provisioning/src/general/lib/aws/actions_lib.py 
b/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
index cef7424..1664010 100644
--- a/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
+++ b/infrastructure-provisioning/src/general/lib/aws/actions_lib.py
@@ -247,10 +247,8 @@ def create_subnet(vpc_id, subnet, tag, zone):
     try:
         ec2 = boto3.resource('ec2')
         if zone != "":
-            print('with zone@@@')
             subnet = ec2.create_subnet(VpcId=vpc_id, CidrBlock=subnet, 
AvailabilityZone=zone)
         else:
-            print('without zone@@@')
             subnet = ec2.create_subnet(VpcId=vpc_id, CidrBlock=subnet)
         create_tag(subnet.id, tag)
         subnet.reload()


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@dlab.apache.org
For additional commands, e-mail: commits-h...@dlab.apache.org

Reply via email to