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
commitc1a9bcccece68e8db7b4ac58c1006cc9829eb40b (patch)
tree473c7210f86bb57fb77af52e235ec359ddd41b23
parentced21e20f50597d1a7fb49b25aa394ada64ba815 (diff)
downloadrabbitmq-server-git-c1a9bcccece68e8db7b4ac58c1006cc9829eb40b.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 a2cbcf5517..468a41b206 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),