You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2017/02/03 17:29:16 UTC

[2/2] couch commit: updated refs/heads/COUCHDB-3287-mixed-db-records to d980aa5

Remove public access to the db record

COUCHDB-3288


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

Branch: refs/heads/COUCHDB-3287-mixed-db-records
Commit: 7cc45bbae2723a28dad46cc419ea2ffa93b351c9
Parents: c9fc361
Author: Paul J. Davis <pa...@gmail.com>
Authored: Wed Feb 1 15:15:09 2017 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Fri Feb 3 11:28:52 2017 -0600

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/7cc45bba/src/couch_file.erl
----------------------------------------------------------------------
diff --git a/src/couch_file.erl b/src/couch_file.erl
index 5d11083..b71288f 100644
--- a/src/couch_file.erl
+++ b/src/couch_file.erl
@@ -128,7 +128,7 @@ append_term_md5(Fd, Term, Options) ->
 
 append_binary(Fd, Bin) ->
     ioq:call(Fd, {append_bin, assemble_file_chunk(Bin)}, erlang:get(io_priority)).
-    
+
 append_binary_md5(Fd, Bin) ->
     ioq:call(Fd,
         {append_bin, assemble_file_chunk(Bin, couch_crypto:hash(md5, Bin))},