From 504195a0d953e20e6295278593d99d15f4bf7938 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 17 Sep 2013 11:19:01 -0700 Subject: [PATCH] suite: fix num_jobs count Signed-off-by: Sage Weil --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 3eb28d2c8efa5..d140882707d4f 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) -- 2.39.5