diff options
author | xudan <xudan16@huawei.com> | 2017-07-21 02:44:58 -0400 |
---|---|---|
committer | xudan <xudan16@huawei.com> | 2017-07-21 02:44:58 -0400 |
commit | aff63fcf2a5e7f65322d6a25c553b95e0a1ff94a (patch) | |
tree | 5081a4383b146d1652c722efbdc05ff32fccc2ac | |
parent | f799fe4f81f46731147e7da255475d4bcc5261fd (diff) |
Use uuid1 to replace uuid4
JIRA: DOVETAIL-469
uuid1 is more unique than uuid4
Change-Id: Ic29ec7586ba518e67cb1750df1001cd390fcf313
Signed-off-by: xudan <xudan16@huawei.com>
-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 |