iilyak commented on a change in pull request #1605: Feature/user partitioned databases URL: https://github.com/apache/couchdb/pull/1605#discussion_r224033793
########## File path: src/chttpd/src/chttpd_httpd_handlers.erl ########## @@ -43,3 +44,6 @@ design_handler(<<"_update">>) -> fun chttpd_show:handle_doc_update_req/3; design_handler(<<"_info">>) -> fun chttpd_db:handle_design_info_req/3; design_handler(<<"_rewrite">>) -> fun chttpd_rewrite:handle_rewrite_req/3; design_handler(_) -> no_match. + +partition_design_handler(<<"_view">>) -> fun chttpd_view:handle_partition_view_req/4; +partition_design_handler(_) -> no_match. Review comment: I didn't test it yet, but I am pretty sure we need `partition_handler(_) -> no_match` here (and export it as well). ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
