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 2014/08/28 14:23:42 UTC

[32/33] rexi commit: updated refs/heads/master to bbf59a2

Return ok for pattern matching in client code


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

Branch: refs/heads/master
Commit: a853c32c5a3e5e353d169af7f4cf831f78d9ee1a
Parents: 7d64200
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Aug 19 11:56:19 2014 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Aug 19 11:56:32 2014 -0500

----------------------------------------------------------------------
 src/rexi.erl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rexi/blob/a853c32c/src/rexi.erl
----------------------------------------------------------------------
diff --git a/src/rexi.erl b/src/rexi.erl
index b38c149..69fbd77 100644
--- a/src/rexi.erl
+++ b/src/rexi.erl
@@ -217,7 +217,8 @@ stream_last(Msg) ->
 %% the worker pid and doesn't wait for a response from the controller.
 stream_last(Msg, Timeout) ->
     maybe_init_stream(Timeout),
-    rexi:reply(Msg).
+    rexi:reply(Msg),
+    ok.
 
 %% @equiv stream_ack(Client, 1)
 stream_ack(Client) ->