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

Unified Diff: git_cache.py

Issue 2031773002: git_cache.py: Clobber git repos if the config is corrupt (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cache.py
diff --git a/git_cache.py b/git_cache.py
index 753ccde34a46c70c24c9748827311ff0138dbc0e..9beef36b6b22334f835deccb356c09b43acc07de 100755
--- a/git_cache.py
+++ b/git_cache.py
@@ -246,7 +246,11 @@ class Mirror(object):
cwd = self.mirror_path
# Don't run git-gc in a daemon. Bad things can happen if it gets killed.
- self.RunGit(['config', 'gc.autodetach', '0'], cwd=cwd)
+ try:
+ self.RunGit(['config', 'gc.autodetach', '0'], cwd=cwd)
+ except subprocess2.CalledProcessError:
+ # Hard error, need to clobber.
+ raise RefsHeadsFailedToFetch
Paweł Hajdan Jr. 2016/06/06 11:21:52 It seems hacky to re-use RefsHeadsFailedToFetch ex
Ryan Tseng 2016/06/07 20:38:02 Done.
# Don't combine pack files into one big pack file. It's really slow for
# repositories, and there's no way to track progress and make sure it's
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698