aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-21 17:35:59 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-08-21 17:35:59 +0000
commitc192aa49375815fdcf702009f882d5b8c7aa86f5 (patch)
tree0aaedec0eec7dddad5888ff249143f83ef0dc339
parentfef422415b5a4ebc328ea8f62b91a640b84fc495 (diff)
Update references to buildbot globals deprecated by r10856
R=borenet@google.com Review URL: https://codereview.chromium.org/23011035 git-svn-id: http://skia.googlecode.com/svn/trunk@10860 2bbb7eff-a529-9590-31e7-b0007b416f81
-rwxr-xr-xtools/rebaseline.py5
-rwxr-xr-xtools/submit_try4
2 files changed, 5 insertions, 4 deletions
diff --git a/tools/rebaseline.py b/tools/rebaseline.py
index 3da7e7c8f4..bf412b3bc7 100755
--- a/tools/rebaseline.py
+++ b/tools/rebaseline.py
@@ -38,8 +38,9 @@ if GM_DIRECTORY not in sys.path:
import buildbot_globals
import gm_json
-MASTER_HOST_URL = 'http://%s:%s' % (buildbot_globals.Get('master_host'),
- buildbot_globals.Get('external_port'))
+MASTER_HOST_URL = 'http://%s:%s' % (
+ buildbot_globals.Get('public_master_host'),
+ buildbot_globals.Get('public_external_port'))
ALL_BUILDERS = list(json.load(urllib2.urlopen(
MASTER_HOST_URL + '/json/builders')))
TEST_BUILDERS = filter(lambda x: 'Trybot' not in x and 'Test' in x,
diff --git a/tools/submit_try b/tools/submit_try
index bad1c77cbd..e09e3049a9 100755
--- a/tools/submit_try
+++ b/tools/submit_try
@@ -36,8 +36,8 @@ REGEX = 'regex'
ALL_ALIASES = [ALL_BUILDERS, COMPILE_BUILDERS, CQ_BUILDERS, REGEX]
# Contact information for the build master.
-SKIA_BUILD_MASTER_HOST = str(buildbot_globals.Get('master_host'))
-SKIA_BUILD_MASTER_PORT = str(buildbot_globals.Get('external_port'))
+SKIA_BUILD_MASTER_HOST = str(buildbot_globals.Get('public_master_host'))
+SKIA_BUILD_MASTER_PORT = str(buildbot_globals.Get('public_external_port'))
# All try builders have this suffix.
TRYBOT_SUFFIX = '-Trybot'