You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2014/02/16 13:27:26 UTC

couch-dbupdates commit: updated refs/heads/1994-merge-rcouch to fcc2017

Repository: couchdb-couch-dbupdates
Updated Branches:
  refs/heads/1994-merge-rcouch 4c212661a -> fcc201722


fix handle_req

handle-req/2 was useless. Instead we wanted handle_req/1 to tell to
others which method is allowed.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates/commit/fcc20172
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates/tree/fcc20172
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates/diff/fcc20172

Branch: refs/heads/1994-merge-rcouch
Commit: fcc201722a4494096742ff399f5873895b3c0b6b
Parents: 4c21266
Author: benoitc <bc...@gmail.com>
Authored: Sun Feb 16 13:26:06 2014 +0100
Committer: benoitc <bc...@gmail.com>
Committed: Sun Feb 16 13:26:06 2014 +0100

----------------------------------------------------------------------
 src/couch_dbupdates_httpd.erl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates/blob/fcc20172/src/couch_dbupdates_httpd.erl
----------------------------------------------------------------------
diff --git a/src/couch_dbupdates_httpd.erl b/src/couch_dbupdates_httpd.erl
index ec0c4d6..ae001ae 100644
--- a/src/couch_dbupdates_httpd.erl
+++ b/src/couch_dbupdates_httpd.erl
@@ -37,9 +37,9 @@ handle_req(#httpd{method='GET'}=Req) ->
 
     State = #state{resp=Resp, feed=Feed},
     couch_dbupdates:handle_dbupdates(fun handle_update/2,
-                                     State, Options).
+                                     State, Options);
 
-handle_req(Req, _Db) ->
+handle_req(_Req) ->
     couch_httpd:send_method_not_allowed(Req, "GET").
 
 handle_update(stop, #state{resp=Resp}) ->