nickva commented on code in PR #4703: URL: https://github.com/apache/couchdb/pull/4703#discussion_r1313218625
########## src/chttpd/src/chttpd_httpd_handlers.erl: ########## @@ -35,6 +35,7 @@ db_handler(<<"_design">>) -> fun chttpd_db:handle_design_req/2; db_handler(<<"_partition">>) -> fun chttpd_db:handle_partition_req/2; db_handler(<<"_temp_view">>) -> fun chttpd_view:handle_temp_view_req/2; db_handler(<<"_changes">>) -> fun chttpd_db:handle_changes_req/2; +db_handler(<<"_purged_infos">>) -> fun chttpd_db:handle_purged_infos_req/2; Review Comment: We don't have a special handler for `_purge` wonder why we need it for `_purged_infos`. Could the regular request handler in chttpd_db be able to handle `_purged_infos`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
