diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-04-18 00:28:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-18 23:17:18 +0200 |
commit | 339a79fd6aec74f0b7520440e01b8bf79eca73e7 (patch) | |
tree | 819eb5247548c476e762c40a88725a700de0ae64 | |
parent | 905ae5276d22b600079eaaa2032fbf5bd435331e (diff) | |
download | guix-339a79fd6aec74f0b7520440e01b8bf79eca73e7.tar guix-339a79fd6aec74f0b7520440e01b8bf79eca73e7.tar.gz |
publish: Use 'sendfile' when possible.
* guix/scripts/publish.scm (http-write): In the
'application/octet-stream' case, use 'sendfile' when OUTPUT is a file
port.
-rw-r--r-- | guix/scripts/publish.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/scripts/publish.scm b/guix/scripts/publish.scm index 111cb29bca..f54757b4c9 100644 --- a/guix/scripts/publish.scm +++ b/guix/scripts/publish.scm @@ -469,7 +469,9 @@ blocking." size) client)) (output (response-port response))) - (dump-port input output) + (if (file-port? output) + (sendfile output input size) + (dump-port input output)) (close-port output) (values))))) (lambda args |