瀏覽代碼

Properly log off after retrieving just refs.

Jelmer Vernooij 8 年之前
父節點
當前提交
4b3c095aac
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 3 0
      NEWS
  2. 1 0
      dulwich/client.py

+ 3 - 0
NEWS

@@ -34,6 +34,9 @@
  * Don't drop first slash for SSH paths, except for those
  * Don't drop first slash for SSH paths, except for those
    starting with "~". (Jelmer Vernooij, René Stern, #463)
    starting with "~". (Jelmer Vernooij, René Stern, #463)
 
 
+ * Properly log off after retrieving just refs.
+   (Jelmer Vernooij)
+
 0.16.3	2016-01-14
 0.16.3	2016-01-14
 
 
  TEST FIXES
  TEST FIXES

+ 1 - 0
dulwich/client.py

@@ -630,6 +630,7 @@ class TraditionalGitClient(GitClient):
         proto, _ = self._connect(b'upload-pack', path)
         proto, _ = self._connect(b'upload-pack', path)
         with proto:
         with proto:
             refs, _ = read_pkt_refs(proto)
             refs, _ = read_pkt_refs(proto)
+            proto.write_pkt_line(None)
             return refs
             return refs
 
 
     def archive(self, path, committish, write_data, progress=None,
     def archive(self, path, committish, write_data, progress=None,