You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2017/03/01 16:37:43 UTC

[09/43] couch-mrview commit: updated refs/heads/2971-count-distinct to f7c3c24

gen_event: handle_call suppose to return `{ok, Reply, State}`


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

Branch: refs/heads/2971-count-distinct
Commit: 1a179cbca8a6654bde61826cbfc69f7eb0a23a0d
Parents: 9bafdca
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Tue May 24 18:34:25 2016 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Tue May 24 18:34:25 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview/blob/1a179cbc/src/couch_mrview_update_notifier.erl
----------------------------------------------------------------------
diff --git a/src/couch_mrview_update_notifier.erl b/src/couch_mrview_update_notifier.erl
index 7c7ff1b..803d397 100644
--- a/src/couch_mrview_update_notifier.erl
+++ b/src/couch_mrview_update_notifier.erl
@@ -39,7 +39,7 @@ handle_event(Event, Fun) ->
     {ok, Fun}.
 
 handle_call(_Request, State) ->
-    {reply, ok, State}.
+    {ok, ok, State}.
 
 handle_info({'EXIT', Pid, Reason}, Pid) ->
     couch_log:error("View update notification process ~p died: ~p", [Pid, Reason]),