From aff63fcf2a5e7f65322d6a25c553b95e0a1ff94a Mon Sep 17 00:00:00 2001 From: xudan Date: Fri, 21 Jul 2017 02:44:58 -0400 Subject: Use uuid1 to replace uuid4 JIRA: DOVETAIL-469 uuid1 is more unique than uuid4 Change-Id: Ic29ec7586ba518e67cb1750df1001cd390fcf313 Signed-off-by: xudan --- dovetail/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dovetail/run.py') 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 -- cgit 1.2.3-korg