You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/10/01 01:01:28 UTC

fabric commit: updated refs/heads/master to c0b1619

Repository: couchdb-fabric
Updated Branches:
  refs/heads/master f657a4c21 -> c0b16196f


Don't flatten iolist


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/commit/c0b16196
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/tree/c0b16196
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/diff/c0b16196

Branch: refs/heads/master
Commit: c0b16196f1ec5d1a21da0e58172222bd03698dbc
Parents: f657a4c
Author: Robert Newson <rn...@apache.org>
Authored: Mon Sep 22 14:18:58 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Sep 30 23:58:33 2014 +0100

----------------------------------------------------------------------
 src/fabric_doc_attachments.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/c0b16196/src/fabric_doc_attachments.erl
----------------------------------------------------------------------
diff --git a/src/fabric_doc_attachments.erl b/src/fabric_doc_attachments.erl
index a703db9..8b8123f 100644
--- a/src/fabric_doc_attachments.erl
+++ b/src/fabric_doc_attachments.erl
@@ -38,7 +38,7 @@ receiver(Req, Length) when is_integer(Length) ->
         receive
             {Middleman, Data} ->
                 rexi:reply(attachment_chunk_received),
-                iolist_to_binary(Data)
+                Data
         after Timeout ->
             exit(timeout)
         end