diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-07-22 14:29:30 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-07-22 14:29:30 +0000 |
commit | 1fa3780c53d56b5d583eae39cd027216e22e9f2e (patch) | |
tree | f6f310a24fa3c5f9b4cc3ea47b9813fc7691b110 /src | |
parent | 6bd11d1195f63380bcfd4a1ac6aa6a10700ad5f2 (diff) |
humane error message on missing design handler
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@966685 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_httpd_db.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd_db.erl b/src/couchdb/couch_httpd_db.erl index 29b20c21..9b2014f3 100644 --- a/src/couchdb/couch_httpd_db.erl +++ b/src/couchdb/couch_httpd_db.erl @@ -144,7 +144,9 @@ handle_design_req(#httpd{ % load ddoc DesignId = <<"_design/", DesignName/binary>>, DDoc = couch_httpd_db:couch_doc_open(Db, DesignId, nil, []), - Handler = couch_util:dict_find(Action, DesignUrlHandlers, fun db_req/2), + Handler = couch_util:dict_find(Action, DesignUrlHandlers, fun(A,B,C) -> + throw({not_found, <<"missing handler: ", Action/binary>>}) + end), Handler(Req, Db, DDoc); handle_design_req(Req, Db) -> |