summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@gmail.com>2021-04-14 00:08:18 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2021-04-16 17:44:43 -0400
commit1c3ed04887d1a5b4f2775d5391000bc4482069e5 (patch)
treea25f2178fb4be9834aaf7424ce240a913e624ed9
parente05a6bfc03e100e998de89cd99c8c9e0000d7acf (diff)
downloadcouchdb-1c3ed04887d1a5b4f2775d5391000bc4482069e5.tar.gz
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.
-rw-r--r--src/couch/src/couch_primary_sup.erl6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/couch/src/couch_primary_sup.erl b/src/couch/src/couch_primary_sup.erl
index dc2d9e51a..b6d370fbb 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,