2
0
Эх сурвалжийг харах

Merge pull request #1261 from nanonyme/protocolerror

Wrap all urllib3 read ProtocolErrors as GitProtocolError
Jelmer Vernooij 1 жил өмнө
parent
commit
b6766453ab
1 өөрчлөгдсөн 12 нэмэгдсэн , 1 устгасан
  1. 12 1
      dulwich/client.py

+ 12 - 1
dulwich/client.py

@@ -2224,6 +2224,17 @@ class AbstractHttpGitClient(GitClient):
         return f"{type(self).__name__}({self._base_url!r}, dumb={self.dumb!r})"
         return f"{type(self).__name__}({self._base_url!r}, dumb={self.dumb!r})"
 
 
 
 
+def _wrap_urllib3_exceptions(func):
+
+    def wrapper(*args, **kwargs):
+        try:
+            return func(*args, **kwargs)
+        except urllib3.exceptions.ProtocolError as error:
+            raise GitProtocolError(str(error)) from error
+
+    return wrapper
+
+
 class Urllib3HttpGitClient(AbstractHttpGitClient):
 class Urllib3HttpGitClient(AbstractHttpGitClient):
     def __init__(
     def __init__(
         self,
         self,
@@ -2303,7 +2314,7 @@ class Urllib3HttpGitClient(AbstractHttpGitClient):
             resp.redirect_location = resp.get_redirect_location()
             resp.redirect_location = resp.get_redirect_location()
         else:
         else:
             resp.redirect_location = resp_url if resp_url != url else ""
             resp.redirect_location = resp_url if resp_url != url else ""
-        return resp, resp.read
+        return resp, _wrap_urllib3_exceptions(resp.read)
 
 
 
 
 HttpGitClient = Urllib3HttpGitClient
 HttpGitClient = Urllib3HttpGitClient