You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/07 06:24:02 UTC

couchdb commit: updated refs/heads/1843-feature-bigcouch to 6abe6c8

Updated Branches:
  refs/heads/1843-feature-bigcouch 1000acae6 -> 6abe6c805


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.


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

Branch: refs/heads/1843-feature-bigcouch
Commit: 6abe6c805ab6fdcce06f746891e9f3a1624f3053
Parents: 1000aca
Author: Paul J. Davis <pa...@gmail.com>
Authored: Thu Feb 6 23:23:00 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 23:23:00 2014 -0600

----------------------------------------------------------------------
 rel/overlay/etc/default.ini | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/6abe6c80/rel/overlay/etc/default.ini
----------------------------------------------------------------------
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini
index 56e5dcb..7f623a2 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}