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:09 UTC

[couchdb] 04/24: Update couch_primary_sup to not start couch_task_status child

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 1c3ed04887d1a5b4f2775d5391000bc4482069e5
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Wed Apr 14 00:08:18 2021 -0400

    Update couch_primary_sup to not start couch_task_status child
    
    `couch_task_status` is removed. `_active_tasks` endpoint is driven by the
    `couch_jobs` application.
---
 src/couch/src/couch_primary_sup.erl | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/couch/src/couch_primary_sup.erl b/src/couch/src/couch_primary_sup.erl
index dc2d9e5..b6d370f 100644
--- a/src/couch/src/couch_primary_sup.erl
+++ b/src/couch/src/couch_primary_sup.erl
@@ -25,12 +25,6 @@ init([]) ->
             infinity,
             supervisor,
             [couch_drv]},
-        {couch_task_status,
-            {couch_task_status, start_link, []},
-            permanent,
-            brutal_kill,
-            worker,
-            [couch_task_status]},
         {couch_server,
             {couch_server, sup_start_link, []},
             permanent,