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

Unified Diff: gclient.py

Issue 3357020: Enable parallel checkout by default to --jobs=8 and smoke tests. (Closed)
Patch Set: more fixes 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 | gclient_utils.py » ('j') | 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 650c25a46ee4a0c2f06b5f9714505c24555a78cb..2261789b3d79301847daea7df6a5d67aa5f3508b 100644
--- a/gclient.py
+++ b/gclient.py
@@ -1174,8 +1174,9 @@ def Main(argv):
' %-10s %s' % (fn[3:], Command(fn[3:]).__doc__.split('\n')[0].strip())
for fn in dir(sys.modules[__name__]) if fn.startswith('CMD')]))
parser = optparse.OptionParser(version='%prog ' + __version__)
- parser.add_option('-j', '--jobs', default=1, type='int',
- help='Specify how many SCM commands can run in parallel')
+ parser.add_option('-j', '--jobs', default=8, type='int',
+ help='Specify how many SCM commands can run in parallel; '
+ 'default=%default')
parser.add_option('-v', '--verbose', action='count', default=0,
help='Produces additional output for diagnostics. Can be '
'used up to three times for more logging info.')
« no previous file with comments | « no previous file | gclient_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698