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

Unified Diff: scripts/common/chromium_utils.py

Issue 545803002: Update buildbots to parse new telemetry JSON format. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Switched to having telemetry output json to files. Created 6 years, 3 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 | scripts/slave/process_log_utils.py » ('j') | scripts/slave/results_dashboard.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/common/chromium_utils.py
diff --git a/scripts/common/chromium_utils.py b/scripts/common/chromium_utils.py
index fa49de2047719c97b856f01a48355c9f3a4bb6f1..5a327d3cbece0f968e9bff185f5858b5bf4d849e 100644
--- a/scripts/common/chromium_utils.py
+++ b/scripts/common/chromium_utils.py
@@ -1229,7 +1229,9 @@ def GetActiveMaster(slavename=None, default=None):
for slave in GetAllSlaves():
if slavename == EntryToSlaveName(slave):
return slave['master']
- return default
+ # TESTING. DO NOT SUBMIT.
ghost stip (do not use) 2014/09/09 02:20:06 lol
+ return 'chromium.perf'
+ #return default
def ParsePythonCfg(cfg_filepath, fail_hard=False):
« no previous file with comments | « no previous file | scripts/slave/process_log_utils.py » ('j') | scripts/slave/results_dashboard.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698