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

Unified Diff: git_common.py

Issue 2165643002: Add more error regexps for git retry (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 5 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_common.py
diff --git a/git_common.py b/git_common.py
index 9ccbbc35a6344adc5cd85abf3dc09d02219c82c2..fbb9f88414658a5bde5deeae132de63bbea16c2e 100644
--- a/git_common.py
+++ b/git_common.py
@@ -92,6 +92,14 @@ GIT_TRANSIENT_ERRORS = (
# crbug.com/430343
# TODO(dnj): Resync with Chromite.
r'The requested URL returned error: 5\d+',
+
+ r'Connection reset by peer',
+
+ r'Unable to look up',
+
+ r'Couldn\'t resolve host',
+
+ r'fatal: bad object'
dnj (Google) 2016/07/19 15:38:15 I'm not sure that this is retriable. Couldn't this
dnj (Google) 2016/07/19 22:16:06 (Please reply to comments inline, makes it easier
)
GIT_TRANSIENT_ERRORS_RE = re.compile('|'.join(GIT_TRANSIENT_ERRORS),
« 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