Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: tools/rebaseline.py

Issue 23011035: Update references to buildbot globals deprecated by r10856 (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/submit_try » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/rebaseline.py
===================================================================
--- tools/rebaseline.py (revision 10856)
+++ tools/rebaseline.py (working copy)
@@ -38,8 +38,9 @@
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,
« no previous file with comments | « no previous file | tools/submit_try » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698