From: Sage Weil Date: Tue, 17 Sep 2013 18:19:01 +0000 (-0700) Subject: suite: fix num_jobs count X-Git-Tag: 1.1.0~1844^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=504195a0d953e20e6295278593d99d15f4bf7938;p=teuthology.git suite: fix num_jobs count Signed-off-by: Sage Weil --- diff --git a/teuthology/suite.py b/teuthology/suite.py index 3eb28d2c8e..d140882707 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -126,7 +126,7 @@ combination, and will override anything in the suite. log.debug('Collection %s in %s' % (collection_name, collection)) configs = [(combine_path(collection_name, item[0]), item[1]) for item in build_matrix(collection)] log.info('Collection %s in %s generated %d jobs' % (collection_name, collection, len(configs))) - num_jobs + len(configs) + num_jobs += len(configs) arch = get_arch(args.config) machine_type = get_machine_type(args.config)