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
commitafa4a37993d915366ff9027d5fa2e370e2025104 (patch)
tree17b8c18e38f8221072beb213c29bbe483ca9495a
parent3dc229946d4d007a3103485ad17c0dafc68110df (diff)
downloadrabbitmq-server-bug22847.tar.gz
Don't reply after replying.bug22847
-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 db836757..5fdf0ffa 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}),