From: Loic Dachary Date: Sat, 12 Dec 2015 17:58:04 +0000 (+0100) Subject: suite: honor suite_verify_ceph_hash on --dry-run X-Git-Tag: 1.1.0~711^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F754%2Fhead;p=teuthology.git 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 --- diff --git a/teuthology/suite.py b/teuthology/suite.py index ac12dffa..d1a30733 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)