Code

enable "no-done" extension only when fetching over smart-http
authorJunio C Hamano <gitster@pobox.com>
Tue, 29 Mar 2011 17:16:29 +0000 (10:16 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 29 Mar 2011 19:19:58 +0000 (12:19 -0700)
When 'no-done' protocol extension is used, the upload-pack (i.e. the
server side) process stops listening to the fetch-pack after issuing the
final NAK, and starts sending the generated pack data back, but there may
be more "have" send by the latter in flight that the fetch-pack is
expecting to be responded with ACK/NAK.  This will typically result in a
deadlock (both will block on write that the other end never reads) or
SIGPIPE on the fetch-pack end (upload-pack will finish writing a small
pack and goes away).

Disable it unless fetch-pack is running under smart-http, where there is
no such streaming issue.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
builtin/fetch-pack.c

index 59fbda522b7ba0ce4308aa85fac1a7b1b51c1550..52707a80adb403a887fa880c3286eb54afac5c05 100644 (file)
@@ -708,7 +708,8 @@ static struct ref *do_fetch_pack(int fd[2],
                if (server_supports("no-done")) {
                        if (args.verbose)
                                fprintf(stderr, "Server supports no-done\n");
-                       no_done = 1;
+                       if (args.stateless_rpc)
+                               no_done = 1;
                }
        }
        else if (server_supports("multi_ack")) {