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

Side by Side Diff: gclient.py

Issue 2273043002: bot_update: deploy git fetch timeout. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@kill-fetch
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | gclient_scm.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Meta checkout manager supporting both Subversion and GIT.""" 6 """Meta checkout manager supporting both Subversion and GIT."""
7 # Files 7 # Files
8 # .gclient : Current client configuration, written by 'config' command. 8 # .gclient : Current client configuration, written by 'config' command.
9 # Format is a Python script defining 'solutions', a list whose 9 # Format is a Python script defining 'solutions', a list whose
10 # entries each are maps binding the strings "name" and "url" 10 # entries each are maps binding the strings "name" and "url"
(...skipping 2066 matching lines...) Expand 10 before | Expand all | Expand 10 after
2077 parser.add_option('--ignore_locks', action='store_true', 2077 parser.add_option('--ignore_locks', action='store_true',
2078 help='GIT ONLY - Ignore cache locks.') 2078 help='GIT ONLY - Ignore cache locks.')
2079 parser.add_option('--break_repo_locks', action='store_true', 2079 parser.add_option('--break_repo_locks', action='store_true',
2080 help='GIT ONLY - Forcibly remove repo locks (e.g. ' 2080 help='GIT ONLY - Forcibly remove repo locks (e.g. '
2081 'index.lock). This should only be used if you know for ' 2081 'index.lock). This should only be used if you know for '
2082 'certain that this invocation of gclient is the only ' 2082 'certain that this invocation of gclient is the only '
2083 'thing operating on the git repos (e.g. on a bot).') 2083 'thing operating on the git repos (e.g. on a bot).')
2084 parser.add_option('--lock_timeout', type='int', default=5000, 2084 parser.add_option('--lock_timeout', type='int', default=5000,
2085 help='GIT ONLY - Deadline (in seconds) to wait for git ' 2085 help='GIT ONLY - Deadline (in seconds) to wait for git '
2086 'cache lock to become available. Default is %default.') 2086 'cache lock to become available. Default is %default.')
2087 parser.add_option('--fetch_timeout', type='int',
2088 help='GIT ONLY - Deadline (in seconds) to wait for git '
2089 'fetch command. Default is no deadline.')
Ryan Tseng 2016/08/25 00:06:34 nit: actually isn't it time inbetween output
2087 (options, args) = parser.parse_args(args) 2090 (options, args) = parser.parse_args(args)
2088 client = GClient.LoadCurrentConfig(options) 2091 client = GClient.LoadCurrentConfig(options)
2089 2092
2090 if not client: 2093 if not client:
2091 raise gclient_utils.Error('client not configured; see \'gclient config\'') 2094 raise gclient_utils.Error('client not configured; see \'gclient config\'')
2092 2095
2093 if options.revisions and options.head: 2096 if options.revisions and options.head:
2094 # TODO(maruel): Make it a parser.error if it doesn't break any builder. 2097 # TODO(maruel): Make it a parser.error if it doesn't break any builder.
2095 print('Warning: you cannot use both --head and --revision') 2098 print('Warning: you cannot use both --head and --revision')
2096 2099
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 2359
2357 2360
2358 if '__main__' == __name__: 2361 if '__main__' == __name__:
2359 try: 2362 try:
2360 sys.exit(main(sys.argv[1:])) 2363 sys.exit(main(sys.argv[1:]))
2361 except KeyboardInterrupt: 2364 except KeyboardInterrupt:
2362 sys.stderr.write('interrupted\n') 2365 sys.stderr.write('interrupted\n')
2363 sys.exit(1) 2366 sys.exit(1)
2364 2367
2365 # vim: ts=2:sw=2:tw=80:et: 2368 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« no previous file with comments | « no previous file | gclient_scm.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698