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/08/01 11:05:45 UTC

[09/49] chttpd commit: updated refs/heads/windsor-merge to 554ef74

Add _shards db handler auth check


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

Branch: refs/heads/windsor-merge
Commit: e5ecb22a147984d74a5323a7b68cd3a61287b923
Parents: 4e02118
Author: Russell Branca <ch...@gmail.com>
Authored: Fri Apr 12 16:47:20 2013 -0400
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Jul 29 17:16:19 2014 +0100

----------------------------------------------------------------------
 src/chttpd.erl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/e5ecb22a/src/chttpd.erl
----------------------------------------------------------------------
diff --git a/src/chttpd.erl b/src/chttpd.erl
index 136a0a0..75fcf6d 100644
--- a/src/chttpd.erl
+++ b/src/chttpd.erl
@@ -373,7 +373,8 @@ db_url_handlers() ->
         {<<"_compact">>,        fun chttpd_db:handle_compact_req/2},
         {<<"_design">>,         fun chttpd_db:handle_design_req/2},
         {<<"_temp_view">>,      fun chttpd_view:handle_temp_view_req/2},
-        {<<"_changes">>,        fun chttpd_db:handle_changes_req/2}
+        {<<"_changes">>,        fun chttpd_db:handle_changes_req/2},
+        {<<"_shards">>,         fun mem3_httpd:handle_shards_req/2}
     ].
 
 design_url_handlers() ->