You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2021/04/16 21:45:11 UTC

[couchdb] 06/24: Update couch_secondary_sup to not start index_server

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 622285d2eda24edab270c6f66042f6f7dbc499e2
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Wed Apr 14 00:19:08 2021 -0400

    Update couch_secondary_sup to not start index_server
    
    Index server is gone and replaced by couch_views + couch_jobs applications.
---
 src/couch/src/couch_secondary_sup.erl | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/couch/src/couch_secondary_sup.erl b/src/couch/src/couch_secondary_sup.erl
index 4ccd0c9..293e1b5 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, []}}