From: Patrick Donnelly Date: Thu, 17 Oct 2024 19:58:30 +0000 (-0400) Subject: teuthology/suite: print base config before config merge X-Git-Tag: 1.2.2~52^2~3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=5961d424bede2b807fb41666cec44b849fc76b26;p=teuthology.git teuthology/suite: print base config before config merge So it's easier to see its value before any configs are generated. Signed-off-by: Patrick Donnelly --- diff --git a/teuthology/suite/run.py b/teuthology/suite/run.py index 9b2b6fa701..7f5a1c94b8 100644 --- a/teuthology/suite/run.py +++ b/teuthology/suite/run.py @@ -622,6 +622,9 @@ Note: If you still want to go ahead, use --job-threshold 0''' log.debug('Suite %s in %s' % (suite_name, suite_path)) log.debug(f"subset = {self.args.subset}") log.debug(f"no_nested_subset = {self.args.no_nested_subset}") + if self.args.dry_run: + log.debug("Base job config:\n%s" % self.base_config) + configs = build_matrix(suite_path, subset=self.args.subset, no_nested_subset=self.args.no_nested_subset, @@ -636,9 +639,6 @@ Note: If you still want to go ahead, use --job-threshold 0''' seed=self.args.seed, suite_name=suite_name)) - if self.args.dry_run: - log.debug("Base job config:\n%s" % self.base_config) - # create, but do not write, the temp file here, so it can be # added to the args in collect_jobs, but not filled until # any backtracking is done