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

Unified Diff: scm.py

Issue 3143030: Fix retrying on HTTP 502, my last patch remove this specific case. (Closed)
Patch Set: Created 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scm.py
diff --git a/scm.py b/scm.py
index 06716db672988dbc16c7e7173ec811ce42980454..1f242191999604c48c6563637db38eff38cfc3d3 100644
--- a/scm.py
+++ b/scm.py
@@ -451,7 +451,8 @@ class SVN(object):
if (x.startswith('svn: OPTIONS of') or
x.startswith('svn: PROPFIND of') or
x.startswith('svn: REPORT of') or
- x.startswith('svn: Unknown hostname')):
+ x.startswith('svn: Unknown hostname') or
+ x.startswith('svn: Server sent unexpected return value')):
return True
return False
« 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