This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch 2493-remove-auth-cache in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit f4356a32d37e0c26b1423026bd17fc0c94c6dcb5 Author: Adam Kocoloski <[email protected]> AuthorDate: Tue Jan 28 14:59:52 2020 -0500 Remove couch_auth_cache service It was only used on the backdoor HTTP port. --- src/couch/src/couch_secondary_sup.erl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/couch/src/couch_secondary_sup.erl b/src/couch/src/couch_secondary_sup.erl index 9c7d414..bb78215 100644 --- a/src/couch/src/couch_secondary_sup.erl +++ b/src/couch/src/couch_secondary_sup.erl @@ -30,8 +30,7 @@ init([]) -> {index_server, {couch_index_server, start_link, []}}, {query_servers, {couch_proc_manager, start_link, []}}, {vhosts, {couch_httpd_vhost, start_link, []}}, - {uuids, {couch_uuids, start, []}}, - {auth_cache, {couch_auth_cache, start_link, []}} + {uuids, {couch_uuids, start, []}} ], MaybeHttp = case http_enabled() of
