change marathon group parsing method

fixes difrex/surok#9
This commit is contained in:
w1r0x 2016-12-06 12:11:01 +03:00
parent 9a439fbecf
commit dec5e790c7
2 changed files with 5 additions and 10 deletions

View File

@ -1 +1,2 @@
Denis Zheleztsov <difrex.punk@gmail.com>
Denis Ryabyy <vv1r0x@gmail.com>

View File

@ -89,13 +89,7 @@ def get_group(service, app):
# Return marathon.group
def parse_marathon_app_id(marathon_app_id):
marathon_app_id = marathon_app_id.split('/')
group = ''
counter = len(marathon_app_id) - 2
i = 0
while counter > i:
group = group + marathon_app_id[counter]
if counter != i + 1:
group += '.'
counter -= 1
return group
del(marathon_app_id[-1])
marathon_app_id.reverse()
group = ".".join(marathon_app_id)[:-1]
return(group)