From: Zack Cerza Date: Wed, 7 Sep 2016 21:03:38 +0000 (-0600) Subject: task.internal: use get_builder_project() X-Git-Tag: 1.1.0~522^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=865df5e4001813892765a0d1f1b8fb244f68fc99;p=teuthology.git task.internal: use get_builder_project() Signed-off-by: Zack Cerza --- diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 367796127..092a1cf3e 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -15,7 +15,7 @@ from teuthology import lockstatus from teuthology import lock from teuthology import misc from teuthology import provision -from teuthology.packaging import GitbuilderProject +from teuthology.packaging import get_builder_project from teuthology.exceptions import VersionNotFoundError from teuthology.job_status import get_status, set_status from teuthology.config import config as teuth_config @@ -254,7 +254,7 @@ def check_packages(ctx, config): # We can only do this check if there are a defined sha1 and os_type # in the job config. if os_type and sha1: - package = GitbuilderProject("ceph", ctx.config) + package = get_builder_project()("ceph", ctx.config) template = "Checking packages for os_type,'{os}' flavor '{flav}' and" \ " ceph hash '{ver}'" log.info(