From: Zack Cerza Date: Thu, 15 Jan 2015 15:56:18 +0000 (-0700) Subject: Respect gitbuilder_host in get_ceph_binary_url() X-Git-Tag: 1.1.0~1043 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=86c9c68cc821e474f8124604d5ecd096a3cced4b;p=teuthology.git Respect gitbuilder_host in get_ceph_binary_url() Signed-off-by: Zack Cerza --- diff --git a/teuthology/misc.py b/teuthology/misc.py index 2961d5b52e..67212d52fc 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -199,7 +199,8 @@ def get_ceph_binary_url(package=None, """ return the url of the ceph binary found on gitbuildder. """ - BASE = 'http://gitbuilder.ceph.com/{package}-{format}-{dist}-{arch}-{flavor}/'.format( + BASE = 'http://{host}/{package}-{format}-{dist}-{arch}-{flavor}/'.format( + host=config.gitbuilder_host, package=package, flavor=flavor, arch=arch,