summaryrefslogtreecommitdiff
path: root/src/couchdb
diff options
context:
space:
mode:
authorJohn Christopher Anderson <jchris@apache.org>2010-04-07 19:38:20 +0000
committerJohn Christopher Anderson <jchris@apache.org>2010-04-07 19:38:20 +0000
commita1b7461956b28bd0984f4f2e13d8a1228f352227 (patch)
tree3dc3dc81983845e12ec7dc908b1f92b436360d88 /src/couchdb
parent2c10462d114d938b0fedb718da63ae34152ce08e (diff)
somehow I missed this badarity bug running the test suite last night. completes the last (update_seq) commit.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@931650 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb')
-rw-r--r--src/couchdb/couch_httpd_show.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_httpd_show.erl b/src/couchdb/couch_httpd_show.erl
index f40a0421..134010a9 100644
--- a/src/couchdb/couch_httpd_show.erl
+++ b/src/couchdb/couch_httpd_show.erl
@@ -288,8 +288,8 @@ make_map_start_resp_fun(QueryServer, Db, LName) ->
end.
make_reduce_start_resp_fun(QueryServer, Db, LName) ->
- fun(Req2, Etag, _Acc) ->
- start_list_resp(QueryServer, LName, Req2, Db, {[]}, Etag)
+ fun(Req2, Etag, _Acc, UpdateSeq) ->
+ start_list_resp(QueryServer, LName, Req2, Db, {[{<<"update_seq">>, UpdateSeq}]}, Etag)
end.
start_list_resp(QServer, LName, Req, Db, Head, Etag) ->