From 6ae13b5f8b827bc87a8cf3306c3caa1b97e49df3 Mon Sep 17 00:00:00 2001 From: Filipe David Borba Manana Date: Thu, 30 Sep 2010 12:03:15 +0000 Subject: Removing ?getv macros. With OTP releases up to R13B03 it's not possible to define a 2 macro functions with the same name and different arities. (Only allowed in R13B04 and R14). git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1003025 13f79535-47bb-0310-9956-ffa450edef68 --- src/couchdb/couch_rep_writer.erl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/couchdb/couch_rep_writer.erl') diff --git a/src/couchdb/couch_rep_writer.erl b/src/couchdb/couch_rep_writer.erl index 47de670a..f7bc9a72 100644 --- a/src/couchdb/couch_rep_writer.erl +++ b/src/couchdb/couch_rep_writer.erl @@ -80,7 +80,7 @@ write_bulk_docs(#http_db{headers = Headers} = Db, Docs) -> }, ErrorsJson = case couch_rep_httpc:request(Request) of {FailProps} -> - exit({target_error, ?getv(<<"error">>, FailProps)}); + exit({target_error, couch_util:get_value(<<"error">>, FailProps)}); List when is_list(List) -> List end, @@ -164,8 +164,8 @@ streamer_fun(Boundary, JsonBytes, Atts) -> end. write_docs_1({Props}) -> - Id = ?getv(<<"id">>, Props), - Rev = couch_doc:parse_rev(?getv(<<"rev">>, Props)), - ErrId = couch_util:to_existing_atom(?getv(<<"error">>, Props)), - Reason = ?getv(<<"reason">>, Props), + Id = couch_util:get_value(<<"id">>, Props), + Rev = couch_doc:parse_rev(couch_util:get_value(<<"rev">>, Props)), + ErrId = couch_util:to_existing_atom(couch_util:get_value(<<"error">>, Props)), + Reason = couch_util:get_value(<<"reason">>, Props), {{Id, Rev}, {ErrId, Reason}}. -- cgit v1.2.3