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

Unified Diff: scripts/slave/slave_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: 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
Index: scripts/slave/slave_utils.py
diff --git a/scripts/slave/slave_utils.py b/scripts/slave/slave_utils.py
index 2a9346564bec3498763e07b231b2365e0e9d0d79..48d26e9c65dda5cb83f9c11d95d9b36fc48d88b6 100644
--- a/scripts/slave/slave_utils.py
+++ b/scripts/slave/slave_utils.py
@@ -210,9 +210,10 @@ def SlaveBaseDir(chrome_dir):
if leaf == 'build':
# Remember this one and keep looking for something shallower.
result = parent
- if leaf == 'slave':
- # We are too deep, stop now.
- break
+ # DO NOT SUBMIT: Hack for running locally.
+ #if leaf == 'slave':
+ # # We are too deep, stop now.
+ # break
prev_dir = curr_dir
curr_dir = parent
if not result:

Powered by Google App Engine
This is Rietveld 408576698