Updated Branches: refs/heads/1843-feature-bigcouch c4421dac4 -> da8caa17e
fix _changes Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/da8caa17 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/da8caa17 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/da8caa17 Branch: refs/heads/1843-feature-bigcouch Commit: da8caa17e695bd45c198803ad6b1e192de702654 Parents: c4421da Author: Robert Newson <[email protected]> Authored: Mon Dec 23 22:51:13 2013 +0000 Committer: Robert Newson <[email protected]> Committed: Mon Dec 23 22:51:41 2013 +0000 ---------------------------------------------------------------------- src/fabric/src/fabric_rpc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/da8caa17/src/fabric/src/fabric_rpc.erl ---------------------------------------------------------------------- diff --git a/src/fabric/src/fabric_rpc.erl b/src/fabric/src/fabric_rpc.erl index 9ca4f62..afcf0e5 100644 --- a/src/fabric/src/fabric_rpc.erl +++ b/src/fabric/src/fabric_rpc.erl @@ -430,7 +430,7 @@ changes_enumerator(DocInfo, {Db, _Seq, Args, Options}) -> } = Args, Conflicts = proplists:get_value(conflicts, Options, false), #doc_info{high_seq=Seq, revs=[#rev_info{deleted=Del}|_]} = DocInfo, - case [X || X <- couch_changes:filter(DocInfo, Acc), X /= null] of + case [X || X <- couch_changes:filter(Db, DocInfo, Acc), X /= null] of [] -> {ok, {Db, Seq, Args, Options}}; Results ->
