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

Unified Diff: gclient.py

Issue 3342028: Change the way to detect build slave. (Closed)
Patch Set: Created 10 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index 8ce29f5dfcc44242db4a2a196971dc323f388afd..9721f426aec23358448f275ab4bb7ce2906a9137 100644
--- a/gclient.py
+++ b/gclient.py
@@ -1176,9 +1176,10 @@ def Main(argv):
for fn in dir(sys.modules[__name__]) if fn.startswith('CMD')]))
parser = optparse.OptionParser(version='%prog ' + __version__)
# TODO(maruel): Temporary workaround to disable parallel checkout on
- # buildbots until they can correctly parse its output. Uses that fact that
- # stdout is redirected as a signal.
- if sys.stdout.isatty():
+ # buildbots until they can correctly parse its output. stdout being
+ # redirected is not a good signal, at least on linux. Check for environment
+ # variable instead.
+ if 'CHROME_HEADLESS' not in os.environ:
jobs = 8
else:
jobs = 1
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698