Skip to content

Commit

Permalink
Merge pull request #620 from ceph/wip-12995
Browse files Browse the repository at this point in the history
Fix bug in using priority 0
  • Loading branch information
vasukulkarni committed Sep 8, 2015
2 parents 9fe38dd + 1b82a27 commit 199a6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/suite.py
Expand Up @@ -276,7 +276,7 @@ def prepare_and_schedule(job_config, suite_repo_path, base_yaml_paths, limit,
]
if dry_run:
base_args.append('--dry-run')
if job_config.priority:
if job_config.priority is not None:
base_args.extend(['--priority', str(job_config.priority)])
if verbose:
base_args.append('-v')
Expand Down

0 comments on commit 199a6e7

Please sign in to comment.