diff options
author | hongbo tian <hongbo.tianhongbo@huawei.com> | 2017-07-21 08:13:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-21 08:13:04 +0000 |
commit | 7ed1cf189676693d84c9d48bb964c178b16bae76 (patch) | |
tree | 45178d216ad59868f6d574a01046865cd8ce5c1a | |
parent | 14e89740cbd51b5f6d37d1d2139ac28c4a59ef0e (diff) | |
parent | aff63fcf2a5e7f65322d6a25c553b95e0a1ff94a (diff) |
Merge "Use uuid1 to replace uuid4"
-rwxr-xr-x | dovetail/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/run.py b/dovetail/run.py index 5c0b2ddb..f89671f0 100755 --- a/dovetail/run.py +++ b/dovetail/run.py @@ -220,7 +220,7 @@ def env_init(logger): def main(*args, **kwargs): """Dovetail compliance test entry!""" - build_tag = "daily-master-%s" % str(uuid.uuid4()) + build_tag = "daily-master-%s" % str(uuid.uuid1()) dt_cfg.dovetail_config['build_tag'] = build_tag if not get_result_path(): return |