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:31 UTC

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

Removed upgrade statement in rexi:kill/2

Removing cruft we no longer need that was sending an extra useless
message.

BugzId: 27671


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

Branch: refs/heads/master
Commit: e271ae4666d908a8cb4b33002b46f9da0f3611e6
Parents: f938055
Author: Paul J. Davis <pa...@gmail.com>
Authored: Thu Jan 30 21:31:11 2014 -0600
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Jul 23 18:06:14 2014 +0100

----------------------------------------------------------------------
 src/rexi.erl | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rexi/blob/e271ae46/src/rexi.erl
----------------------------------------------------------------------
diff --git a/src/rexi.erl b/src/rexi.erl
index b0ad8c1..b38c149 100644
--- a/src/rexi.erl
+++ b/src/rexi.erl
@@ -72,9 +72,6 @@ cast(Node, Caller, MFA, Options) ->
 %% No rexi_EXIT message will be sent.
 -spec kill(node(), reference()) -> ok.
 kill(Node, Ref) ->
-    % This first version is to tide us over during the upgrade. We'll
-    % remove it in the next commit that will be in a separate release.
-    rexi_utils:send({rexi_server, Node}, cast_msg({kill, Ref})),
     rexi_utils:send(rexi_utils:server_pid(Node), cast_msg({kill, Ref})),
     ok.