Преглед на файлове

Only expect a shallow update when requesting a depth

Previously, we were also expecting a shallow update response when
advertising that we have shallow commits.

This was the cause of unexpected pkt lines in reported in
https://github.com/jelmer/dulwich/pull/1202
Abderrahim Kitouni преди 1 година
родител
ревизия
d0fdd66976
променени са 1 файла, в които са добавени 4 реда и са изтрити 2 реда
  1. 4 2
      dulwich/client.py

+ 4 - 2
dulwich/client.py

@@ -532,14 +532,16 @@ def _handle_upload_pack_head(proto, capabilities, graph_walker, wants, can_read,
             proto.write_pkt_line(
                 COMMAND_DEEPEN + b" " + str(depth).encode("ascii") + b"\n"
             )
-        proto.write_pkt_line(None)
+    proto.write_pkt_line(None)
+
+    if depth not in (0, None):
         if can_read is not None:
             (new_shallow, new_unshallow) = _read_shallow_updates(proto.read_pkt_seq())
         else:
             new_shallow = new_unshallow = None
     else:
         new_shallow = new_unshallow = set()
-        proto.write_pkt_line(None)
+
     have = next(graph_walker)
     while have:
         proto.write_pkt_line(COMMAND_HAVE + b" " + have + b"\n")