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

Don't wait for EOF in _handle_receive_pack_tail

This is the same as the previous commit, except it makes receive-pack (i.e. git
push) to a GitHub repository work again.
Siddharth Agarwal преди 11 години
родител
ревизия
a0343b4fbd
променени са 1 файла, в които са добавени 0 реда и са изтрити 4 реда
  1. 0 4
      dulwich/client.py

+ 0 - 4
dulwich/client.py

@@ -334,10 +334,6 @@ class GitClient(object):
                     self._report_status_parser.handle_packet(pkt)
         if self._report_status_parser is not None:
             self._report_status_parser.check()
-        # wait for EOF before returning
-        data = proto.read()
-        if data:
-            raise SendPackError('Unexpected response %r' % data)
 
     def _handle_upload_pack_head(self, proto, capabilities, graph_walker,
                                  wants, can_read):