You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/08/28 14:12:13 UTC

[37/50] couch commit: updated refs/heads/master to 9d0ac7d

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/fff5a3e9
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/fff5a3e9
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/fff5a3e9

Branch: refs/heads/master
Commit: fff5a3e96a645c9c8677c5eeb8fdb501aea2bea4
Parents: 7b902b8
Author: Paul J. Davis <pa...@gmail.com>
Authored: Mon Aug 11 15:02:33 2014 -0500
Committer: Robert Newson <rn...@apache.org>
Committed: Thu Aug 28 13:00:02 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/fff5a3e9/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}}.