You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by ad...@apache.org on 2019/11/13 15:12:29 UTC

[incubator-dlab] branch DLAB-1270 created (now 2a0804b)

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

adamsd pushed a change to branch DLAB-1270
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 2a0804b  added lowercase replacement for SBN gcp ssn_terminate

This branch includes the following new commits:

     new 2a0804b  added lowercase replacement for SBN gcp ssn_terminate

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[incubator-dlab] 01/01: added lowercase replacement for SBN gcp ssn_terminate

Posted by ad...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 2a0804b04b09014497ddaa49811c6f1f20c84c17
Author: AdamsDisturber <ad...@gmail.com>
AuthorDate: Wed Nov 13 17:12:12 2019 +0200

    added lowercase replacement for SBN gcp ssn_terminate
---
 infrastructure-provisioning/src/general/scripts/gcp/ssn_terminate.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infrastructure-provisioning/src/general/scripts/gcp/ssn_terminate.py b/infrastructure-provisioning/src/general/scripts/gcp/ssn_terminate.py
index 34aa6e0..c033429 100644
--- a/infrastructure-provisioning/src/general/scripts/gcp/ssn_terminate.py
+++ b/infrastructure-provisioning/src/general/scripts/gcp/ssn_terminate.py
@@ -37,7 +37,7 @@ if __name__ == "__main__":
     print('Generating infrastructure names and tags')
     ssn_conf = dict()
     ssn_conf['service_base_name'] = replace_multi_symbols(
-        os.environ['conf_service_base_name'].replace('_', '-')[:12], '-', True)
+        os.environ['conf_service_base_name'].lower().replace('_', '-')[:12], '-', True)
     ssn_conf['region'] = os.environ['gcp_region']
     ssn_conf['zone'] = os.environ['gcp_zone']
     pre_defined_vpc = False


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