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

Unified Diff: git_common.py

Issue 701843004: Added transient 502 errors to 'git_retry' list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 6 years, 1 month 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
===================================================================
--- git_common.py (revision 292841)
+++ git_common.py (working copy)
@@ -81,11 +81,12 @@
# crbug.com/187444
r'RPC failed; result=\d+, HTTP code = \d+',
- # crbug.com/315421
- r'The requested URL returned error: 500 while accessing',
-
# crbug.com/388876
r'Connection timed out',
+
+ # crbug.com/430343
+ # TODO(dnj): Resync with Chromite.
+ r'The requested URL returned error: 5\d+',
)
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