summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2014-02-06 23:23:00 -0600
committerPaul J. Davis <paul.joseph.davis@gmail.com>2014-02-06 23:23:00 -0600
commit6abe6c805ab6fdcce06f746891e9f3a1624f3053 (patch)
tree45f0e6102c3be18c47c5bba3c661a51ac53d851e
parent1000acae60036ea8fb8d181c5aad14145d774901 (diff)
downloadcouchdb-6abe6c805ab6fdcce06f746891e9f3a1624f3053.tar.gz
Reenable the replication manager
These missing daemons are because BigCouch relies on the OTP supervision tree quite a bit more than regular CouchDB. We'll need to go through and undo quite a bit of this in the future. For now I'm in "make it work" mode.
-rw-r--r--rel/overlay/etc/default.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini
index 56e5dcba4..7f623a258 100644
--- a/rel/overlay/etc/default.ini
+++ b/rel/overlay/etc/default.ini
@@ -54,6 +54,7 @@ query_servers={couch_proc_manager, start_link, []}
httpd={couch_httpd, start_link, []}
stats_collector={couch_stats_collector, start, []}
stats_aggregator={couch_stats_aggregator, start, []}
+replicator_manager={couch_replicator_manager, start_link, []}
uuids={couch_uuids, start, []}
auth_cache={couch_auth_cache, start_link, []}
vhosts={couch_httpd_vhost, start_link, []}
@@ -66,7 +67,7 @@ _utils = {couch_httpd_misc_handlers, handle_utils_dir_req, "{{prefix}}/share/www
_all_dbs = {couch_httpd_misc_handlers, handle_all_dbs_req}
_active_tasks = {couch_httpd_misc_handlers, handle_task_status_req}
_config = {couch_httpd_misc_handlers, handle_config_req}
-_replicate = {couch_httpd_misc_handlers, handle_replicate_req}
+_replicate = {couch_replicator_httpd, handle_req}
_uuids = {couch_httpd_misc_handlers, handle_uuids_req}
_restart = {couch_httpd_misc_handlers, handle_restart_req}
_stats = {couch_httpd_stats_handlers, handle_stats_req}