summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Kocoloski <kocolosk@apache.org>2020-01-28 14:59:52 -0500
committerAdam Kocoloski <kocolosk@apache.org>2020-01-28 14:59:52 -0500
commitf4356a32d37e0c26b1423026bd17fc0c94c6dcb5 (patch)
treed8963e718fc15acf44ec97fbfbbd3f46d1f7333d
parentd59d84ac78e596a97d8ae014d7d84e7b306495d0 (diff)
downloadcouchdb-f4356a32d37e0c26b1423026bd17fc0c94c6dcb5.tar.gz
Remove couch_auth_cache service
It was only used on the backdoor HTTP port.
-rw-r--r--src/couch/src/couch_secondary_sup.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/couch/src/couch_secondary_sup.erl b/src/couch/src/couch_secondary_sup.erl
index 9c7d414d0..bb7821555 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