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/10/01 17:04:40 UTC

[2/2] couchdb-global-changes git commit: Pass supervisor's children to couch_epi

Pass supervisor's children to couch_epi


Project: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/commit/07097ce3
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/tree/07097ce3
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/diff/07097ce3

Branch: refs/heads/master
Commit: 07097ce3e10e970e4f00d487baf75c782943c8f8
Parents: 349b307
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Tue Sep 29 13:05:05 2015 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Tue Sep 29 13:05:05 2015 -0700

----------------------------------------------------------------------
 src/global_changes_sup.erl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-global-changes/blob/07097ce3/src/global_changes_sup.erl
----------------------------------------------------------------------
diff --git a/src/global_changes_sup.erl b/src/global_changes_sup.erl
index 6e61595..13394ea 100644
--- a/src/global_changes_sup.erl
+++ b/src/global_changes_sup.erl
@@ -26,7 +26,7 @@ start_link() ->
 init([]) ->
     global_changes_config_listener:subscribe(),
     {ok, {
-        {one_for_one, 5, 10}, couch_epi:register_service(global_changes_epi) ++ [
+        {one_for_one, 5, 10}, couch_epi:register_service(global_changes_epi, [
             {
                 global_changes_server,
                 {global_changes_server, start_link, []},
@@ -35,4 +35,4 @@ init([]) ->
                 worker,
                 [global_changes_server]
             }
-    ]}}.
+    ])}}.