Bug 1572132 - fix URL generation in fetch-content r=glandium

MANUAL PUSH: to allow docker images to build without closing autoland

Differential Revision: https://phabricator.services.mozilla.com/D41038
This commit is contained in:
Dustin J. Mitchell
2019-08-07 15:53:15 +00:00
parent fbae9ad133
commit 0135f6e2d6

View File

@@ -575,7 +575,7 @@ def api(root_url, service, version, path):
if root_url == 'https://taskcluster.net':
return 'https://{service}.taskcluster.net/{version}/{path}'.format(
service=service, version=version, path=path)
return 'https://{root_url}/api/{service}/{version}/{path}'.format(
return '{root_url}/api/{service}/{version}/{path}'.format(
root_url=root_url, service=service, version=version, path=path)