Browse Source

Handle ConnectionResetError explicitly.

Jelmer Vernooij 2 years ago
parent
commit
0877eb1147
1 changed files with 2 additions and 0 deletions
  1. 2 0
      dulwich/protocol.py

+ 2 - 0
dulwich/protocol.py

@@ -238,6 +238,8 @@ class Protocol(object):
             if self.report_activity:
                 self.report_activity(size, "read")
             pkt_contents = read(size - 4)
+        except ConnectionResetError:
+            raise HangupException()
         except socket.error as e:
             raise GitProtocolError(e)
         else: