You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2021/04/06 14:40:55 UTC

[incubator-datalab] 03/05: [DATALAB-2091]: removed with hide usage

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

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

commit c908fb2d1446174dc49161340995c03c05d56810
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Tue Apr 6 16:56:33 2021 +0300

    [DATALAB-2091]: removed with hide usage
---
 .../src/general/scripts/aws/project_prepare.py                 | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py b/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
index 8eb4c5d..35fa390 100644
--- a/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
+++ b/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
@@ -425,9 +425,8 @@ if __name__ == "__main__":
                 datalab.fab.append_result("Failed creating security group for edge node.", str(err))
                 raise Exception
 
-            with hide('stderr', 'running', 'warnings'):
-                print('Waiting for changes to propagate')
-                time.sleep(10)
+            print('Waiting for changes to propagate')
+            time.sleep(10)
         except:
             datalab.actions_lib.remove_all_iam_resources('notebook', project_conf['project_name'])
             datalab.actions_lib.remove_all_iam_resources('edge', project_conf['project_name'])
@@ -506,9 +505,8 @@ if __name__ == "__main__":
             traceback.print_exc()
             raise Exception
 
-        with hide('stderr', 'running', 'warnings'):
-            print('Waiting for changes to propagate')
-            time.sleep(10)
+        print('Waiting for changes to propagate')
+        time.sleep(10)
     except Exception as err:
         datalab.fab.append_result("Failed creating security group for private subnet.", str(err))
         datalab.actions_lib.remove_all_iam_resources('notebook', project_conf['project_name'])

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org