You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/10/09 20:48:14 UTC

chttpd commit: updated refs/heads/master to 57b87ce

Repository: couchdb-chttpd
Updated Branches:
  refs/heads/master b46d34c6d -> 57b87ce94


fix filtered replication


Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/57b87ce9
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/57b87ce9
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/57b87ce9

Branch: refs/heads/master
Commit: 57b87ce94e50a440d936caa476a5cb3b2ce8da9e
Parents: b46d34c
Author: Robert Newson <rn...@apache.org>
Authored: Thu Oct 9 19:48:07 2014 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Thu Oct 9 19:48:07 2014 +0100

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


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/57b87ce9/src/chttpd_db.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_db.erl b/src/chttpd_db.erl
index eec18be..cf5f1fa 100644
--- a/src/chttpd_db.erl
+++ b/src/chttpd_db.erl
@@ -59,7 +59,7 @@ handle_request(#httpd{path_parts=[DbName|RestParts],method=Method,
 handle_changes_req(#httpd{method='GET'}=Req, Db) ->
     #changes_args{filter=Raw, style=Style} = Args0 = parse_changes_query(Req),
     ChangesArgs = Args0#changes_args{
-        filter = couch_changes:configure_filter(Raw, Style, Req, Db)
+        filter_fun = couch_changes:configure_filter(Raw, Style, Req, Db)
     },
     case ChangesArgs#changes_args.feed of
     "normal" ->