You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ii...@apache.org on 2016/05/25 02:00:48 UTC

[1/2] couch-replicator commit: updated refs/heads/master to 8697441

Repository: couchdb-couch-replicator
Updated Branches:
  refs/heads/master 13326bb4b -> 869744113


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


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

Branch: refs/heads/master
Commit: 8a4bbc04ae7fe258966ada9a6a7c109174734196
Parents: 13326bb
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Tue May 24 18:39:23 2016 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Tue May 24 18:39:23 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator/blob/8a4bbc04/src/couch_replicator_notifier.erl
----------------------------------------------------------------------
diff --git a/src/couch_replicator_notifier.erl b/src/couch_replicator_notifier.erl
index 99b199a..f7640a3 100644
--- a/src/couch_replicator_notifier.erl
+++ b/src/couch_replicator_notifier.erl
@@ -49,7 +49,7 @@ handle_event(Event, {Fun, Acc}) when is_function(Fun, 2) ->
     {ok, {Fun, Acc2}}.
 
 handle_call(_Msg, State) ->
-    {reply, ok, State}.
+    {ok, ok, State}.
 
 handle_info(_Msg, State) ->
     {ok, State}.


[2/2] couch-replicator commit: updated refs/heads/master to 8697441

Posted by ii...@apache.org.
Merge remote branch 'cloudant:fix-some-type-errors'

This closes #39

Signed-off-by: ILYA Khlopotov <ii...@ca.ibm.com>


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

Branch: refs/heads/master
Commit: 8697441137d635fbd6490692cb075912b36c7239
Parents: 13326bb 8a4bbc0
Author: ILYA Khlopotov <ii...@ca.ibm.com>
Authored: Tue May 24 19:00:34 2016 -0700
Committer: ILYA Khlopotov <ii...@ca.ibm.com>
Committed: Tue May 24 19:00:34 2016 -0700

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