浏览代码

client: don't assume server response is of length 20

We do not for sure the length; it is safer to use
Protocol.read_pkt_line().

Also, handle HangupException if read_pkt_line() raises it. This happens
when talking to old versions of git-daemon (v1.6.6.1-26-g38a81b4), where
there won't be anything to read.
Tay Ray Chuan 15 年之前
父节点
当前提交
c1c0b6765d
共有 1 个文件被更改,包括 10 次插入4 次删除
  1. 10 4
      dulwich/client.py

+ 10 - 4
dulwich/client.py

@@ -28,6 +28,7 @@ import subprocess
 
 from dulwich.errors import (
     ChecksumMismatch,
+    HangupException,
     )
 from dulwich.protocol import (
     Protocol,
@@ -119,10 +120,15 @@ class GitClient(object):
                                          len(objects))
         
         # read the final confirmation sha
-        client_sha = self.proto.read(20)
-        if not client_sha in (None, "", sha):
-            raise ChecksumMismatch(sha, client_sha)
-            
+        try:
+            client_sha = self.proto.read_pkt_line()
+            if not client_sha in (None, "", sha):
+                raise ChecksumMismatch(sha, client_sha)
+        except HangupException:
+            # for git-daemon versions before v1.6.6.1-26-g38a81b4, there is
+            # nothing to read; catch this and hide from the user.
+            pass
+
         return new_refs
 
     def fetch(self, path, target, determine_wants=None, progress=None):