summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@gmail.com>2021-04-14 00:19:08 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2021-04-16 17:44:43 -0400
commit622285d2eda24edab270c6f66042f6f7dbc499e2 (patch)
treefd5fbbc7114a0d3f9e9f9f2f8723d8fdca50d818
parent41fa9a7ad84e9e6f92e873f7252e95c387416eca (diff)
downloadcouchdb-622285d2eda24edab270c6f66042f6f7dbc499e2.tar.gz
Update couch_secondary_sup to not start index_server
Index server is gone and replaced by couch_views + couch_jobs applications.
-rw-r--r--src/couch/src/couch_secondary_sup.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/couch/src/couch_secondary_sup.erl b/src/couch/src/couch_secondary_sup.erl
index 4ccd0c9dd..293e1b52a 100644
--- a/src/couch/src/couch_secondary_sup.erl
+++ b/src/couch/src/couch_secondary_sup.erl
@@ -27,7 +27,6 @@ init([]) ->
dynamic}
],
Daemons = [
- {index_server, {couch_index_server, start_link, []}},
{query_servers, {couch_proc_manager, start_link, []}},
{vhosts, {couch_httpd_vhost, start_link, []}},
{uuids, {couch_uuids, start, []}}