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 2015/09/02 20:34:17 UTC

[2/2] couch commit: updated refs/heads/master to 4d5dd10

Register service

COUCHDB-2796


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

Branch: refs/heads/master
Commit: 4d5dd10bcb3074794d4a3c4fe2360f1f9ec89cff
Parents: 3c217a0
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Wed Sep 2 09:47:56 2015 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Wed Sep 2 09:47:56 2015 -0700

----------------------------------------------------------------------
 src/couch_secondary_sup.erl | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/4d5dd10b/src/couch_secondary_sup.erl
----------------------------------------------------------------------
diff --git a/src/couch_secondary_sup.erl b/src/couch_secondary_sup.erl
index 4bda4ef..0f62575 100644
--- a/src/couch_secondary_sup.erl
+++ b/src/couch_secondary_sup.erl
@@ -18,6 +18,7 @@ start_link() ->
     supervisor:start_link({local,couch_secondary_services}, ?MODULE, []).
 
 init([]) ->
+    couch_epi:register_service(couch_db),
     SecondarySupervisors = [
         {couch_plugin_event,
             {gen_event, start_link, [{local, couch_plugin}]},