This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch prototype/fdb-replicator in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 056cf647317a0405a7c21b33c146c55c5971b171 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Mon Jul 20 18:34:13 2020 -0400 [wip] forgot to register replicator epi plugin in supervisor --- src/couch_replicator/src/couch_replicator_sup.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couch_replicator/src/couch_replicator_sup.erl b/src/couch_replicator/src/couch_replicator_sup.erl index b86529f..394c6b8 100644 --- a/src/couch_replicator/src/couch_replicator_sup.erl +++ b/src/couch_replicator/src/couch_replicator_sup.erl @@ -59,5 +59,5 @@ init(_Args) -> brutal_kill, worker, [couch_replicator]} - ], + ] ++ couch_epi:register_service(couch_replicator_api, []), {ok, {{rest_for_one,10,1}, Children}}.
