From: Zack Cerza Date: Wed, 13 Apr 2016 21:33:23 +0000 (-0600) Subject: Simplify message counting filtered jobs X-Git-Tag: 1.1.0~627^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=2eb34d48418b0a99309d9b80498b90390520002c;p=teuthology.git Simplify message counting filtered jobs Signed-off-by: Zack Cerza --- diff --git a/teuthology/suite.py b/teuthology/suite.py index 28267a973d..17c6dba382 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -732,8 +732,9 @@ def schedule_suite(job_config, count = len(jobs_to_schedule) missing_count = len(jobs_missing_packages) log.info('Suite %s in %s scheduled %d jobs.' % (suite_name, path, count)) - log.info('Suite %s in %s -- %d jobs were filtered out.' % - (suite_name, path, len(configs) - count)) + log.info('%d/%d jobs were filtered out.', + (len(configs) - count), + len(configs)) if missing_count: log.warn('Scheduled %d/%d jobs that are missing packages!', missing_count, count)