From: Aishwarya Mathuria Date: Thu, 12 Jun 2025 11:50:41 +0000 (+0530) Subject: Revert "teuthology/suite: print base config before config merge" X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9b44a102f365c5d65ff83e6ee93f8f25cdc2766e;p=teuthology.git Revert "teuthology/suite: print base config before config merge" This reverts commit 5961d424bede2b807fb41666cec44b849fc76b26. --- diff --git a/teuthology/suite/run.py b/teuthology/suite/run.py index bb7f5c2f7..7b397f808 100644 --- a/teuthology/suite/run.py +++ b/teuthology/suite/run.py @@ -609,9 +609,6 @@ 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, @@ -626,6 +623,9 @@ 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