From a703db388a5d883bc1ae7011b17bae76710e319a Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 10 Sep 2018 23:23:59 +0800 Subject: [PATCH] teuthology/suite: use specified seed and subset if results.log is not readable Signed-off-by: Kefu Chai --- teuthology/suite/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite/__init__.py b/teuthology/suite/__init__.py index 60274b4bce..08c585ae99 100644 --- a/teuthology/suite/__init__.py +++ b/teuthology/suite/__init__.py @@ -114,7 +114,7 @@ def get_rerun_conf(conf): try: subset, seed = reporter.get_rerun_conf(conf.rerun) except IOError: - return None, None + return conf.subset, conf.seed if seed is None: return conf.subset, conf.seed if conf.seed < 0: -- 2.39.5