summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2010-06-10 17:48:04 +0100
committerSimon MacMullen <simon@rabbitmq.com>2010-06-10 17:48:04 +0100
commit9c629d1c0698e38f0ab90675ee3692d27339068a (patch)
tree17b8c18e38f8221072beb213c29bbe483ca9495a
parentdb003d71517a2d093656517691a4bce691b086fd (diff)
downloadrabbitmq-server-git-9c629d1c0698e38f0ab90675ee3692d27339068a.tar.gz
Don't reply after replying.
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index db83675738..5fdf0ffa90 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -722,7 +722,7 @@ handle_call({requeue, AckTags, ChPid}, From, State) ->
not_found ->
rabbit_log:warning("Ignoring requeue from unknown ch: ~p~n",
[ChPid]),
- reply(ok, State);
+ noreply(State);
C = #cr{acktags = ChAckTags} ->
ChAckTags1 = subtract_acks(ChAckTags, AckTags),
store_ch_record(C#cr{acktags = ChAckTags1}),