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

Unified 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, 4 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 | « gclient.py ('k') | slowwwww.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index 2f3a3a5b279696cb64a4761b9082b2f8e84ca102..05941e14df8dd1f568e1e9567b286c29fa615874 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -1202,6 +1202,10 @@ class GitWrapper(SCMWrapper):
def _Fetch(self, options, remote=None, prune=False, quiet=False):
kill_timeout = float(os.getenv('GCLIENT_KILL_GIT_FETCH_AFTER', 0))
+ if kill_timeout:
+ logging.warn('experimental: GCLIENT_KILL_GIT_FETCH_AFTER %s',
+ kill_timeout)
+ kill_timeout = 5
cfg = gclient_utils.DefaultIndexPackConfig(self.url)
fetch_cmd = cfg + [
'fetch',
@@ -1247,6 +1251,13 @@ class GitWrapper(SCMWrapper):
kwargs.setdefault('print_stdout', False)
env = scm.GIT.ApplyEnvVars(kwargs)
cmd = ['git'] + args
+
+ if kwargs.get('kill_timeout', 0) == 5 and 'fetch' in args:
+ cmd = ['python',
+ '/usr/local/google/home/tandrii/bin/depot_tools/slowwwww.py',
+ '--spawn'] + args
+ logging.info("coming nooooowwwwwwwww")
+
if show_header:
gclient_utils.CheckCallAndFilterAndHeader(cmd, env=env, **kwargs)
else:
« 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