Remove original env name from clone env name

This commit is contained in:
Oleg Gelbukh 2015-05-25 10:07:37 +00:00
parent 61acecea4a
commit dc3b68c819
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def get_parser():
def update_env_name(orig_name, seed_name):
if not seed_name:
seed_name = "{0}-{1}".format(orig_name, uuid.uuid4())
seed_name = "{0}".format(uuid.uuid4())
cluster_json = "{0}/cluster.json".format(orig_name)
with open(cluster_json, "r") as f:
cluster_config = json.load(f)