From 42bcfd3930a2536a3061029d55814c9f079ea9df Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Sat, 12 Dec 2015 18:58:04 +0100 Subject: [PATCH] suite: honor suite_verify_ceph_hash on --dry-run When running dry-run, an attempt is made to figure out if the hash of the job is already present in the gitbuilder. This must not be done if suite_verify_ceph_hash is false. Signed-off-by: Loic Dachary --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index ac12dffac4..d1a30733d7 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -613,7 +613,7 @@ def schedule_suite(job_config, args=arg ) - if dry_run: + if dry_run and config.suite_verify_ceph_hash: full_job_config = dict() deep_merge(full_job_config, job_config.to_dict()) deep_merge(full_job_config, parsed_yaml) -- 2.39.5