summaryrefslogtreecommitdiff
path: root/src/fabric_rpc.erl
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-07-14 13:32:19 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-07-14 13:32:19 -0400
commit63330eb0bd922f504fb7b4111f98236879711288 (patch)
treefb656c7262a1d4956a1c4ae2007f296ab6741069 /src/fabric_rpc.erl
parent24850155eee3a969d8f2daf127a5a782f6c273cd (diff)
support the atts_since qs param for GET requests
Diffstat (limited to 'src/fabric_rpc.erl')
-rw-r--r--src/fabric_rpc.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fabric_rpc.erl b/src/fabric_rpc.erl
index 673627da..6be7c3cc 100644
--- a/src/fabric_rpc.erl
+++ b/src/fabric_rpc.erl
@@ -161,7 +161,7 @@ get_update_seq(DbName) ->
with_db(DbName, [], {couch_db, get_update_seq, []}).
open_doc(DbName, DocId, Options) ->
- with_db(DbName, Options, {couch_db, open_doc_int, [DocId, Options]}).
+ with_db(DbName, Options, {couch_db, open_doc, [DocId, Options]}).
open_revs(DbName, Id, Revs, Options) ->
with_db(DbName, Options, {couch_db, open_doc_revs, [Id, Revs, Options]}).