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

Side by Side Diff: gclient_scm.py

Issue 2297663002: bot_update: add debug output if GCLIENT_KILL_GIT_FETCH_AFTER. (Closed)
Patch Set: actually WAI on top of this CL deps. 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 | « gclient.py ('k') | slowwwww.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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Gclient-specific SCM-specific operations.""" 5 """Gclient-specific SCM-specific operations."""
6 6
7 from __future__ import print_function 7 from __future__ import print_function
8 8
9 import errno 9 import errno
10 import logging 10 import logging
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 checkout_args = ['checkout'] 1195 checkout_args = ['checkout']
1196 if force: 1196 if force:
1197 checkout_args.append('--force') 1197 checkout_args.append('--force')
1198 if quiet: 1198 if quiet:
1199 checkout_args.append('--quiet') 1199 checkout_args.append('--quiet')
1200 checkout_args.append(ref) 1200 checkout_args.append(ref)
1201 return self._Capture(checkout_args) 1201 return self._Capture(checkout_args)
1202 1202
1203 def _Fetch(self, options, remote=None, prune=False, quiet=False): 1203 def _Fetch(self, options, remote=None, prune=False, quiet=False):
1204 kill_timeout = float(os.getenv('GCLIENT_KILL_GIT_FETCH_AFTER', 0)) 1204 kill_timeout = float(os.getenv('GCLIENT_KILL_GIT_FETCH_AFTER', 0))
1205 if kill_timeout:
1206 logging.warn('experimental: GCLIENT_KILL_GIT_FETCH_AFTER %s',
1207 kill_timeout)
1208 kill_timeout = 5
1205 cfg = gclient_utils.DefaultIndexPackConfig(self.url) 1209 cfg = gclient_utils.DefaultIndexPackConfig(self.url)
1206 fetch_cmd = cfg + [ 1210 fetch_cmd = cfg + [
1207 'fetch', 1211 'fetch',
1208 remote or self.remote, 1212 remote or self.remote,
1209 ] 1213 ]
1210 1214
1211 if prune: 1215 if prune:
1212 fetch_cmd.append('--prune') 1216 fetch_cmd.append('--prune')
1213 if options.verbose: 1217 if options.verbose:
1214 fetch_cmd.append('--verbose') 1218 fetch_cmd.append('--verbose')
(...skipping 25 matching lines...) Expand all
1240 self._Fetch(options) 1244 self._Fetch(options)
1241 1245
1242 def _Run(self, args, options, show_header=True, **kwargs): 1246 def _Run(self, args, options, show_header=True, **kwargs):
1243 # Disable 'unused options' warning | pylint: disable=W0613 1247 # Disable 'unused options' warning | pylint: disable=W0613
1244 kwargs.setdefault('cwd', self.checkout_path) 1248 kwargs.setdefault('cwd', self.checkout_path)
1245 kwargs.setdefault('stdout', self.out_fh) 1249 kwargs.setdefault('stdout', self.out_fh)
1246 kwargs['filter_fn'] = self.filter 1250 kwargs['filter_fn'] = self.filter
1247 kwargs.setdefault('print_stdout', False) 1251 kwargs.setdefault('print_stdout', False)
1248 env = scm.GIT.ApplyEnvVars(kwargs) 1252 env = scm.GIT.ApplyEnvVars(kwargs)
1249 cmd = ['git'] + args 1253 cmd = ['git'] + args
1254
1255 if kwargs.get('kill_timeout', 0) == 5 and 'fetch' in args:
1256 cmd = ['python',
1257 '/usr/local/google/home/tandrii/bin/depot_tools/slowwwww.py',
1258 '--spawn'] + args
1259 logging.info("coming nooooowwwwwwwww")
1260
1250 if show_header: 1261 if show_header:
1251 gclient_utils.CheckCallAndFilterAndHeader(cmd, env=env, **kwargs) 1262 gclient_utils.CheckCallAndFilterAndHeader(cmd, env=env, **kwargs)
1252 else: 1263 else:
1253 if kwargs.pop('use_v42', False): 1264 if kwargs.pop('use_v42', False):
1254 gclient_utils.CheckCallAndFilter42(cmd, env=env, **kwargs) 1265 gclient_utils.CheckCallAndFilter42(cmd, env=env, **kwargs)
1255 else: 1266 else:
1256 gclient_utils.CheckCallAndFilter(cmd, env=env, **kwargs) 1267 gclient_utils.CheckCallAndFilter(cmd, env=env, **kwargs)
1257 1268
1258 1269
1259 class SVNWrapper(SCMWrapper): 1270 class SVNWrapper(SCMWrapper):
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 new_command.append('--force') 1745 new_command.append('--force')
1735 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1746 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1736 new_command.extend(('--accept', 'theirs-conflict')) 1747 new_command.extend(('--accept', 'theirs-conflict'))
1737 elif options.manually_grab_svn_rev: 1748 elif options.manually_grab_svn_rev:
1738 new_command.append('--force') 1749 new_command.append('--force')
1739 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1750 if command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1740 new_command.extend(('--accept', 'postpone')) 1751 new_command.extend(('--accept', 'postpone'))
1741 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]: 1752 elif command[0] != 'checkout' and scm.SVN.AssertVersion('1.6')[0]:
1742 new_command.extend(('--accept', 'postpone')) 1753 new_command.extend(('--accept', 'postpone'))
1743 return new_command 1754 return new_command
OLDNEW
« no previous file with comments | « gclient.py ('k') | slowwwww.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698