summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-07-27 09:09:00 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-07-27 09:09:00 +0100
commit3a799b253758b1486f2ae10823a4646b8bd655bf (patch)
tree473c7210f86bb57fb77af52e235ec359ddd41b23
parent2445aa040757f9a33d7ddcf135022c4a911ff803 (diff)
downloadrabbitmq-server-3a799b253758b1486f2ae10823a4646b8bd655bf.tar.gz
remove superfluous warning
We don't complain about similar situations elsewhere, so there is no point doing it here.
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index a2cbcf55..468a41b2 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -719,8 +719,6 @@ handle_call({requeue, AckTags, ChPid}, From, State) ->
gen_server2:reply(From, ok),
case lookup_ch(ChPid) of
not_found ->
- rabbit_log:warning("Ignoring requeue from unknown ch: ~p~n",
- [ChPid]),
noreply(State);
C = #cr{acktags = ChAckTags} ->
ChAckTags1 = subtract_acks(ChAckTags, AckTags),