Chromium Code Reviews| Index: gclient.py |
| diff --git a/gclient.py b/gclient.py |
| index e2491cef1d39b1a80e6c6fcb3ae25fab676696bc..18ca0f4a2a176c18f0671e8722580f9bbff71da3 100755 |
| --- a/gclient.py |
| +++ b/gclient.py |
| @@ -1827,10 +1827,6 @@ class OptionParser(optparse.OptionParser): |
| jobs = 1 |
| else: |
| jobs = max(8, gclient_utils.NumLocalCpus()) |
| - # cmp: 2013/06/19 |
| - # Temporary workaround to lower bot-load on SVN server. |
| - if os.environ.get('CHROME_HEADLESS') == '1': |
|
agable
2014/02/26 22:43:12
This seems dangerous until we're entirely off of s
Ryan Tseng
2014/02/27 23:31:40
Added a condition to skip this if .update.flag is
|
| - jobs = 1 |
| self.add_option( |
| '-j', '--jobs', default=jobs, type='int', |