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:35:14 UTC

[1/2] couch-index commit: updated refs/heads/master to d548100

Repository: couchdb-couch-index
Updated Branches:
  refs/heads/master b47ce9412 -> d54810000


Remove `ignore_providers` option

COUCHDB-2796


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

Branch: refs/heads/master
Commit: cccff352c0a04316a836424a8d7fc2c6a8a61119
Parents: b47ce94
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Tue Sep 1 06:29:52 2015 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Tue Sep 1 06:29:52 2015 -0700

----------------------------------------------------------------------
 src/couch_index_plugin.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/cccff352/src/couch_index_plugin.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_plugin.erl b/src/couch_index_plugin.erl
index 9707089..48822ed 100644
--- a/src/couch_index_plugin.erl
+++ b/src/couch_index_plugin.erl
@@ -42,4 +42,4 @@ maybe_transform(Items) ->
 
 update(Handle, State, View, Updated, Removed) ->
     Args = [State, View, maybe_transform(Updated), maybe_transform(Removed)],
-    couch_epi:apply(Handle, ?SERVICE_ID, index_update, Args, [ignore_providers]).
+    couch_epi:apply(Handle, ?SERVICE_ID, index_update, Args, []).


[2/2] couch-index commit: updated refs/heads/master to d548100

Posted by rn...@apache.org.
Register service

COUCHDB-2796


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

Branch: refs/heads/master
Commit: d548100002995ac279d761618be7195d900cd94c
Parents: cccff35
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Wed Sep 2 09:51:43 2015 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Wed Sep 2 09:51:43 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch-index/blob/d5481000/src/couch_index_server.erl
----------------------------------------------------------------------
diff --git a/src/couch_index_server.erl b/src/couch_index_server.erl
index 42a122b..0f18c0b 100644
--- a/src/couch_index_server.erl
+++ b/src/couch_index_server.erl
@@ -38,6 +38,7 @@
 -record(st, {root_dir}).
 
 start_link() ->
+    couch_epi:register_service(couch_index),
     gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).