Remove duplicate couch_replicator processes

These are started by the couch_replicator application now.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/093454d4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/093454d4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/093454d4

Branch: refs/heads/windsor-merge
Commit: 093454d432ec66c397366d285f8ef12603369566
Parents: 3755bb6
Author: Paul J. Davis <[email protected]>
Authored: Mon Aug 11 15:02:33 2014 -0500
Committer: Robert Newson <[email protected]>
Committed: Tue Aug 26 10:44:12 2014 +0100

----------------------------------------------------------------------
 src/couch_primary_sup.erl | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/093454d4/src/couch_primary_sup.erl
----------------------------------------------------------------------
diff --git a/src/couch_primary_sup.erl b/src/couch_primary_sup.erl
index cbd576d..dc2d9e5 100644
--- a/src/couch_primary_sup.erl
+++ b/src/couch_primary_sup.erl
@@ -36,19 +36,7 @@ init([]) ->
             permanent,
             brutal_kill,
             worker,
-            [couch_server]},
-        {couch_replication_event,
-            {gen_event, start_link, [{local, couch_replication}]},
-            permanent,
-            brutal_kill,
-            worker,
-            dynamic},
-        {couch_replicator_job_sup,
-            {couch_replicator_job_sup, start_link, []},
-            permanent,
-            infinity,
-            supervisor,
-            [couch_replicator_job_sup]}
+            [couch_server]}
     ],
     {ok, {{one_for_one, 10, 3600}, Children}}.
 

Reply via email to